Skip to content

Commit c674a49

Browse files
JustinBeckwithAce Nassri
authored andcommitted
refactor: drop repo-tool as an exec wrapper (#118)
1 parent f57c097 commit c674a49

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

compute/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"node": ">=4.0.0"
1010
},
1111
"scripts": {
12-
"system-test": "repo-tools test run --cmd ava -- -T 20s --verbose system-test/*.test.js",
13-
"startup-test": "repo-tools test run --cmd ava -- -T 200s --verbose startup-script/system-test/*.test.js",
12+
"system-test": "ava -T 20s --verbose system-test/*.test.js",
13+
"startup-test": "ava -T 200s --verbose startup-script/system-test/*.test.js",
1414
"test": "npm run system-test && npm run startup-test"
1515
},
1616
"dependencies": {

compute/startup-script/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"uuid": "^3.2.1"
1313
},
1414
"scripts": {
15-
"test": "repo-tools test run --cmd ava -- -T 600s --verbose system-test/*.test.js",
15+
"test": "ava -T 600s --verbose system-test/*.test.js",
1616
"start": "node -e 'require(\"./index.js\").create(\"vm-with-apache\", console.log)'",
1717
"delete": "node -e 'require(\"./index.js\").delete(\"vm-with-apache\", console.log)'",
1818
"list": "node -e 'require(\"./index.js\").list(console.log)'"

0 commit comments

Comments
 (0)