tests: Remove overly aggressive timeouts

This commit is contained in:
Richard Hansen 2021-11-13 03:03:01 -05:00
parent 3c6aef11bd
commit 263105d185
3 changed files with 0 additions and 3 deletions

View File

@ -285,7 +285,6 @@ describe(__filename, function () {
}
it(testObj.description, async function () {
this.timeout(250);
const {window: {document}} = new jsdom.JSDOM(testObj.html);
// Create an empty attribute pool
const apool = new AttributePool();

View File

@ -24,7 +24,6 @@ describe(__filename, function () {
});
it('regression test for missing await in createAuthor (#5000)', async function () {
this.timeout(700);
const {authorID} = await AuthorManager.createAuthor(); // Should block until db.set() finishes.
assert(await AuthorManager.doesAuthorExist(authorID));
});

View File

@ -22,7 +22,6 @@ describe(__filename, function () {
describe('/javascript', function () {
it('/javascript -> 200', async function () {
this.timeout(200);
await agent.get('/javascript').expect(200);
});
});