We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9757463 commit 0d9ce2eCopy full SHA for 0d9ce2e
package.json
@@ -15,7 +15,7 @@
15
"scripts": {
16
"build": "echo nothing to build",
17
"lint": "eslint .",
18
- "test": "ava test/*"
+ "test": "ava test/* --timeout=30s"
19
},
20
"dependencies": {
21
"shift-ast": "^7.0.0",
test/valid-subtrees.js
@@ -51,7 +51,6 @@ function isValidButSubtreeIsNotValid(tree) {
51
52
test('fuzzing: all subtrees of random trees are valid and well-formed', async t => {
53
t.plan(0);
54
- t.timeout(30e3); // 30 second
55
outer: for (let i = 0; i < 100; ++i) {
56
let tree = (Math.random() < 0.5 ? fuzzScript : fuzzModule)();
57
if (!valid(tree)) {
0 commit comments