various timeout changes

This commit is contained in:
John McLear 2021-01-27 21:50:18 +00:00
parent c43de8ea59
commit 189786979f
8 changed files with 62 additions and 62 deletions

View file

@ -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;