Skip to content

Commit b9cbbf1

Browse files
authored
chore: Avoid timeouts on tests (#87)
1 parent c054cf2 commit b9cbbf1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: test/index.js

+6
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,8 @@ describe('interpret.extensions', function () {
208208
});
209209

210210
it('does not error with the .mjs extension', function (done) {
211+
this.timeout(0);
212+
211213
var ext = '.mjs';
212214
var fixture = './fixtures/' + ext.slice(1) + '/0/test' + ext;
213215

@@ -223,6 +225,8 @@ describe('interpret.extensions', function () {
223225
this.skip();
224226
}
225227

228+
this.timeout(0);
229+
226230
var ext = '.mjs';
227231
var fixture = './fixtures/' + ext.slice(1) + '/0/test' + ext;
228232

@@ -251,6 +255,8 @@ describe('interpret.extensions', function () {
251255
this.skip();
252256
}
253257

258+
this.timeout(0);
259+
254260
var ext = '.mjs';
255261
var fixture = './fixtures/' + ext.slice(1) + '/1/test' + ext;
256262

0 commit comments

Comments
 (0)