Skip to content
This repository has been archived by the owner on Mar 8, 2020. It is now read-only.

Commit

Permalink
Disable Mocha timeouts due to Travis (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Stone committed Jun 2, 2017
1 parent 57c206e commit fcaa9e4
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/basic-sample-network/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"licchk": "license-check",
"postlicchk": "npm run doc",
"doc": "jsdoc --pedantic --recurse -c jsdoc.conf",
"test": "mocha --recursive && cucumber-js"
"test": "mocha -t 0 --recursive && cucumber-js"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/bond-network/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"licchk": "license-check",
"postlicchk": "npm run doc",
"doc": "jsdoc --pedantic --recurse -c jsdoc.conf",
"test": "mocha --recursive",
"test": "mocha -t 0 --recursive",
"deploy": "./scripts/deploy.sh"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/carauction-network/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"licchk": "license-check",
"postlicchk": "npm run doc",
"doc": "jsdoc --pedantic --recurse -c jsdoc.conf",
"test": "mocha --recursive",
"test": "mocha -t 0 --recursive",
"deploy": "./scripts/deploy.sh"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/digitalproperty-network/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"licchk": "license-check",
"postlicchk": "npm run doc",
"doc": "jsdoc --pedantic --recurse -c jsdoc.conf",
"test": "mocha --recursive",
"test": "mocha -t 0 --recursive",
"deploy": "./scripts/deploy.sh"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/marbles-network/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"licchk": "license-check",
"postlicchk": "npm run doc",
"doc": "jsdoc --pedantic --recurse -c jsdoc.conf",
"test": "mocha --recursive",
"test": "mocha -t 0 --recursive",
"deploy": "./scripts/deploy.sh"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/perishable-network/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"licchk": "license-check",
"postlicchk": "npm run doc",
"doc": "jsdoc --pedantic --recurse -c jsdoc.conf",
"test": "mocha --recursive",
"test": "mocha -t 0 --recursive",
"deploy": "./scripts/deploy.sh"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/vehicle-lifecycle-network/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"licchk": "license-check",
"postlicchk": "npm run doc",
"doc": "jsdoc --pedantic --recurse -c jsdoc.conf",
"test": "mocha -t 100000 --recursive",
"test": "mocha -t 0 --recursive",
"deploy": "./scripts/deploy.sh"
},
"repository": {
Expand Down

0 comments on commit fcaa9e4

Please sign in to comment.