Skip to content

Commit

Permalink
refactor: drop repo-tool as an exec wrapper (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored and Ace Nassri committed Nov 21, 2022
1 parent 4521610 commit 6b90b4c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions compute/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"node": ">=4.0.0"
},
"scripts": {
"system-test": "repo-tools test run --cmd ava -- -T 20s --verbose system-test/*.test.js",
"startup-test": "repo-tools test run --cmd ava -- -T 200s --verbose startup-script/system-test/*.test.js",
"system-test": "ava -T 20s --verbose system-test/*.test.js",
"startup-test": "ava -T 200s --verbose startup-script/system-test/*.test.js",
"test": "npm run system-test && npm run startup-test"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion compute/startup-script/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"uuid": "^3.2.1"
},
"scripts": {
"test": "repo-tools test run --cmd ava -- -T 600s --verbose system-test/*.test.js",
"test": "ava -T 600s --verbose system-test/*.test.js",
"start": "node -e 'require(\"./index.js\").create(\"vm-with-apache\", console.log)'",
"delete": "node -e 'require(\"./index.js\").delete(\"vm-with-apache\", console.log)'",
"list": "node -e 'require(\"./index.js\").list(console.log)'"
Expand Down

0 comments on commit 6b90b4c

Please sign in to comment.