Sha256: 17143cf52ab1f4ea1539ef229cdb6d7395008d00b6624c1df468fb2d8b7c8aeb
Contents?: true
Size: 423 Bytes
Versions: 7
Compression:
Stored size: 423 Bytes
Contents
#!/bin/bash -x if [ "$TEST_SUITE" == "unit" ]; then ./node_modules/.bin/karma start --single-run --browsers PhantomJS elif [ "$TRAVIS_SECURE_ENV_VARS" == "true" -a "$TEST_SUITE" == "integration" ]; then static -p 8888 & sleep 3 # integration tests are flaky, don't let them fail the build ./node_modules/mocha/bin/mocha --harmony -R spec ./test/integration/test.js || true else echo "Not running any tests" fi
Version data entries
7 entries across 7 versions & 1 rubygems