From b9cbbf16ee40a10fe5cd243c95646b22b4f4654d Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Thu, 7 Apr 2022 15:42:14 -0700 Subject: [PATCH] chore: Avoid timeouts on tests (#87) --- test/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/index.js b/test/index.js index a09e8ef..5708108 100644 --- a/test/index.js +++ b/test/index.js @@ -208,6 +208,8 @@ describe('interpret.extensions', function () { }); it('does not error with the .mjs extension', function (done) { + this.timeout(0); + var ext = '.mjs'; var fixture = './fixtures/' + ext.slice(1) + '/0/test' + ext; @@ -223,6 +225,8 @@ describe('interpret.extensions', function () { this.skip(); } + this.timeout(0); + var ext = '.mjs'; var fixture = './fixtures/' + ext.slice(1) + '/0/test' + ext; @@ -251,6 +255,8 @@ describe('interpret.extensions', function () { this.skip(); } + this.timeout(0); + var ext = '.mjs'; var fixture = './fixtures/' + ext.slice(1) + '/1/test' + ext;