Skip to content

Commit

Permalink
run the tests longer
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelficarra committed Jun 12, 2016
1 parent 78241c1 commit 31276c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dist"
],
"scripts": {
"test": "mocha --compilers js:babel-register --inline-diffs --check-leaks --timeout 5000 --slow 4000 --ui tdd --reporter dot --recursive test",
"test": "mocha --compilers js:babel-register --inline-diffs --check-leaks --timeout 60000 --slow 30000 --ui tdd --reporter dot --recursive test",
"build": "babel --modules commonStrict --source-maps-inline --out-dir dist src",
"prepublish": "rm -rf dist/* && npm update && npm run build"
},
Expand Down
2 changes: 1 addition & 1 deletion test/unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import fuzzProgram, {FuzzerState, fuzzIdentifier, fuzzWhileStatement} from "../"

suite("unit", () => {
testRepeatedly("fuzzIdentifier produces a valid Identifier (not IdentifierName)", () => {
for (let i = 0; i < 1e3; ++i) {
for (let i = 0; i < 30e3; ++i) {
let ident = fuzzIdentifier();
try {
if (ident === 'enum') continue;
Expand Down

0 comments on commit 31276c6

Please sign in to comment.