Skip to content

Commit

Permalink
test: double babel-node/cli test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Sep 26, 2019
1 parent cba606b commit 8852519
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/babel-cli/test/index.js
Expand Up @@ -230,7 +230,7 @@ fs.readdirSync(fixtureLoc).forEach(function(binName) {
opts.inFiles[".babelrc"] = helper.readFile(babelrcLoc);
}

it(testName, buildTest(binName, testName, opts));
it(testName, buildTest(binName, testName, opts), 20000);
});
});
});
2 changes: 1 addition & 1 deletion packages/babel-node/test/index.js
Expand Up @@ -198,7 +198,7 @@ fs.readdirSync(fixtureLoc).forEach(function(binName) {
opts.inFiles[".babelrc"] = helper.readFile(babelrcLoc);
}

it(testName, buildTest(binName, testName, opts));
it(testName, buildTest(binName, testName, opts), 20000);
});
});
});

0 comments on commit 8852519

Please sign in to comment.