We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3098829 commit eff8946Copy full SHA for eff8946
1 file changed
tools/travis.sh
@@ -3,16 +3,14 @@
3
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4
cd "$SCRIPT_DIR/.."
5
6
-export COVERAGE=1
7
-
8
node_modules/.bin/jscoverage lib
9
10
# TODO: Only run tests once, and use a custom reporter which outputs both LCOV and text,
11
# for Travis.
12
node_modules/.bin/mocha test
13
STATUS=$?
14
15
-node_modules/.bin/mocha -R mocha-lcov-reporter test > .lcov
+COVERAGE=1 node_modules/.bin/mocha -R mocha-lcov-reporter test > .lcov
16
17
cat .lcov | node_modules/.bin/coveralls
18
0 commit comments