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