mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 16:36:15 -04:00
various timeout changes
This commit is contained in:
parent
c43de8ea59
commit
189786979f
8 changed files with 62 additions and 62 deletions
|
@ -246,7 +246,7 @@ describe(__filename, function () {
|
|||
});
|
||||
|
||||
it('setHTML', function (done) {
|
||||
this.timeout(100);
|
||||
this.timeout(150);
|
||||
api.get(`${endPoint('setHTML')}&padID=${testPadId}&html=${encodeURIComponent(test.input)}`)
|
||||
.expect((res) => {
|
||||
if (res.body.code !== 0) throw new Error(`Error:${testName}`);
|
||||
|
@ -256,7 +256,7 @@ describe(__filename, function () {
|
|||
});
|
||||
|
||||
it('getHTML', function (done) {
|
||||
this.timeout(100);
|
||||
this.timeout(150);
|
||||
api.get(`${endPoint('getHTML')}&padID=${testPadId}`)
|
||||
.expect((res) => {
|
||||
const gotHtml = res.body.data.html;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue