diff --git a/neokit b/neokit index 46d804137..6506ce944 160000 --- a/neokit +++ b/neokit @@ -1 +1 @@ -Subproject commit 46d80413782e08338d6747f25508ea94bcd1c7c2 +Subproject commit 6506ce944a47f78e071f49b600df588a3fe91e28 diff --git a/runTests.ps1 b/runTests.ps1 index 057e1e824..1794e78cd 100644 --- a/runTests.ps1 +++ b/runTests.ps1 @@ -10,7 +10,8 @@ try } else { - npm run start-neo4j -- --neorun.start.args="$args" + $env.NEORUN_START_ARGS="$args" + npm run start-neo4j } npm test diff --git a/runTests.sh b/runTests.sh index f521d43b0..6ec1f977b 100755 --- a/runTests.sh +++ b/runTests.sh @@ -11,7 +11,8 @@ if [ "$1" == "" ]; then npm run start-neo4j else # Example: ./runTests.sh '-v 3.0.1 -p neo4j' - npm run start-neo4j -- --neorun.start.args=\'"$1"\' + # Example: npm run start-neo4j -- --neorun.start.args='-v 3.0.1 -p neo4j' + NEORUN_START_ARGS="$1" npm run start-neo4j fi sleep 2