Skip to content

Commit 548a4aa

Browse files
author
Zhen
committed
Merge branch '1.0' into 1.1
2 parents b827c68 + afc0d0f commit 548a4aa

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

runTests.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ try
1010
}
1111
else
1212
{
13-
npm run start-neo4j -- --neorun.start.args="$args"
13+
$env.NEORUN_START_ARGS="$args"
14+
npm run start-neo4j
1415
}
1516

1617
npm test

runTests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ if [ "$1" == "" ]; then
1111
npm run start-neo4j
1212
else
1313
# Example: ./runTests.sh '-v 3.0.1 -p neo4j'
14-
npm run start-neo4j -- --neorun.start.args=\'"$1"\'
14+
# Example: npm run start-neo4j -- --neorun.start.args='-v 3.0.1 -p neo4j'
15+
NEORUN_START_ARGS="$1" npm run start-neo4j
1516
fi
1617

1718
sleep 2

0 commit comments

Comments
 (0)