Run publish script tests in Release mode

Realized it should have done this after publishing 0.11.0-rc
This commit is contained in:
Scott Kyle 2016-03-16 13:44:08 -07:00
parent cf3b0c5f15
commit 395f241f72
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ git fetch origin || die 'Failed to fetch from git origin.'
for test in eslint jsdoc realmjs react-example react-tests react-tests-android; do
echo "RUNNING TEST: $test"
echo '----------------------------------------'
npm test "$test" || die "Test Failed: $test"
npm test "$test" Release || die "Test Failed: $test"
echo
done