Skip to content

Commit 3e632ba

Browse files
committed
Fix runTests scripts
1 parent 00e30c5 commit 3e632ba

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

runTests.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
npm --prefix core ci
2-
npm --prefix core test
32
npm --prefix core run build
43
npm --prefix bolt-connection ci
5-
npm --prefix bolt-connection test
64
npm --prefix bolt-connection run build
75

86
npm ci
97

8+
npm --prefix core test
9+
npm --prefix bolt-connection test
10+
1011
$ErrorFound = $False
1112

1213
try

runTests.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@ function finish {
66
trap finish EXIT
77

88
npm --prefix ./core/ ci
9-
npm --prefix ./core/ test
109
npm --prefix ./core/ run build
1110
npm --prefix ./bolt-connection/ ci
12-
npm --prefix ./bolt-connection/ test
1311
npm --prefix ./bolt-connection/ run build
1412

1513
npm ci
@@ -18,4 +16,7 @@ if [[ ! -z "$1" ]]; then
1816
export NEOCTRL_ARGS="$1"
1917
fi
2018

19+
npm --prefix ./core/ test
20+
npm --prefix ./bolt-connection/ test
21+
2122
npm run start-neo4j && npm test

0 commit comments

Comments
 (0)