John McLear
df580ec513
timeouts
2021-01-28 22:25:44 +00:00
John McLear
da237547ac
fml yml no like u
2021-01-28 22:16:57 +00:00
John McLear
938f33f44d
fml yml no like u
2021-01-28 22:15:00 +00:00
John McLear
704b9f94a6
change in stat storage
2021-01-28 13:13:10 +00:00
John McLear
d01aafb98c
change in stat storage
2021-01-28 13:11:24 +00:00
John McLear
3caedd370e
change in stat storage
2021-01-28 13:10:46 +00:00
John McLear
f99d294a1c
change in stat storage
2021-01-28 13:09:49 +00:00
John McLear
71dd0bfa04
include performance metrics in testing
2021-01-28 12:52:23 +00:00
John McLear
360f32aa13
Merge branch 'develop' of github.com:ether/etherpad-lite into mochawesome
2021-01-28 12:21:53 +00:00
Richard Hansen
7f392e12e9
tests: Create a `src/tests/` symlink that points to `tests/`
...
This makes it possible for plugin backend tests to do
`require('ep_etherpad-lite/tests/backend/common')` to access the API
key (among other things).
Eventually we probably should reverse these (move `tests/` to
`src/tests/` and make `tests/` a symlink to `src/tests/`) and move
`bin/` to `src/bin/` so that we can avoid the top-level `package.json`
mess.
2021-01-28 10:02:58 +00:00
Richard Hansen
53092fa7af
db/Pad: Call padCopy and padRemove hooks asynchronously
2021-01-28 09:36:22 +00:00
John McLear
88d56168c0
decide against mochawesome
2021-01-27 22:28:36 +00:00
John McLear
05fe4904ed
various timeout changes
2021-01-27 21:59:06 +00:00
John McLear
e8e90ac207
various timeout changes
2021-01-27 21:51:22 +00:00
John McLear
189786979f
various timeout changes
2021-01-27 21:50:18 +00:00
John McLear
c43de8ea59
lint and test timeouts for importexportGetPost.js
2021-01-27 21:25:23 +00:00
John McLear
ac420f4683
lint and test timeouts for webaccess.js
2021-01-27 21:18:39 +00:00
John McLear
5aa0ad3f55
lint and test timeouts for specialpages.js
2021-01-27 21:18:28 +00:00
John McLear
ae49fcf1ae
lint and test timeouts for socketio.js
2021-01-27 21:18:17 +00:00
John McLear
d12dbc7f63
lint and test timeouts for caching_middleware.js
2021-01-27 21:18:08 +00:00
John McLear
fd7a7b4c6c
lint and test timeouts for importexportGetPost.js
2021-01-27 21:17:58 +00:00
John McLear
6f364b065d
lint and timeouts for sessionAndGroups.js
2021-01-27 20:45:40 +00:00
John McLear
3d69773cd2
lint and timeouts for pad.js
2021-01-27 20:45:31 +00:00
John McLear
e5d80a0696
lint and timeouts for instance.js
2021-01-27 20:45:23 +00:00
John McLear
8fff1db4d0
lint and timeouts for importexport.js
2021-01-27 20:33:36 +00:00
John McLear
02bb5a5b73
lint and timeouts for chat.js
2021-01-27 20:30:15 +00:00
John McLear
f4eeb59b86
line and timeouts for characterEncoding.js
2021-01-27 20:29:14 +00:00
John McLear
103e3398ad
api.js lint and timeouts
2021-01-27 20:19:48 +00:00
John McLear
ff71e41812
test timeouts for promises.js
2021-01-27 20:14:22 +00:00
John McLear
28617ee9d0
timeout for contentcollector.js
2021-01-27 20:13:04 +00:00
John McLear
7696ec0a02
Merge branch 'develop' of github.com:ether/etherpad-lite into mochawesome
2021-01-27 20:11:53 +00:00
John McLear
96d9a40b04
timeout values and low hanging lint for hooks.js
2021-01-27 20:09:05 +00:00
John McLear
0c9a19bd1b
longer timeouts
2021-01-27 05:59:01 +00:00
John McLear
14c2987afc
longer timeouts
2021-01-27 05:50:17 +00:00
John McLear
4c825d3060
longer timeouts
2021-01-27 05:48:09 +00:00
John McLear
55ac85473c
more realistic timeouts for slower devices
2021-01-27 05:43:48 +00:00
John McLear
5d276944a8
more realistic timeouts for slower devices
2021-01-27 05:38:29 +00:00
John McLear
21736122a0
more realistic timeouts for slower devices
2021-01-27 05:37:54 +00:00
John McLear
2816820785
more realistic timeouts for slower devices
2021-01-27 05:24:33 +00:00
John McLear
928f1ef8ce
more realistic timeouts for slower devices
2021-01-27 05:23:33 +00:00
John McLear
53708e69eb
more realistic timeouts for slower devices
2021-01-27 05:23:05 +00:00
John McLear
a6406663f4
more realistic timeouts for slower devices
2021-01-27 05:22:24 +00:00
John McLear
929859042c
more realistic timeouts for slower devices
2021-01-27 05:19:04 +00:00
John McLear
01ac40dc56
more realistic timeouts for slower devices
2021-01-27 05:15:44 +00:00
John McLear
88d99c0d60
more realistic timeouts for slower devices
2021-01-27 05:15:17 +00:00
Richard Hansen
e5b45cc984
contentcollector: Delete unnecessary `dom` functions
...
And move the remaining functions out of the `makeContentCollector()`
function.
2021-01-27 04:59:36 +00:00
Richard Hansen
275f041fbb
contentcollector: Simplify child node access
2021-01-27 04:59:36 +00:00
Richard Hansen
1cb5453aeb
contentcollector: Skip over non-Text, non-Element Nodes
2021-01-27 04:59:36 +00:00
Richard Hansen
075969aea0
contentcollector: Fix Element tag name fetch
...
The `name` property is only available on cheerio's Element-like
objects; DOM Element objects do not have a `name` property. Switch to
`dom.tagName()` to fix the logic for browsers.
2021-01-27 04:59:36 +00:00
Richard Hansen
e3ec9d9a4c
contentcollector: Fix parent node access
...
The `parent` property is only available on cheerio's Node-like
objects; DOM Node objects do not have a `parent` property. Switch to
the `parentNode` property so that the code works in browsers as well
as cheerio.
2021-01-27 04:59:36 +00:00