Skip to content

Commit afc0d0f

Browse files
author
Zhen Li
committed
Merge pull request #80 from zhenlineo/1.0-remove-alpha
Default to server 3.0.2
2 parents a3aa231 + 199d6f9 commit afc0d0f

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)