Skip to content

Commit

Permalink
chore: Avoid timeouts on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Apr 7, 2022
1 parent c054cf2 commit 60681bd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/index.js
Expand Up @@ -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;

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

Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit 60681bd

Please sign in to comment.