We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eff8946 commit 892f976Copy full SHA for 892f976
1 file changed
tools/travis.sh
@@ -3,15 +3,17 @@
3
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
4
cd "$SCRIPT_DIR/.."
5
6
-node_modules/.bin/jscoverage lib
+# FIXME: jscoverage fails to exclude the type definition file, which is breaking coverage.
7
+# Re-enable coverage after https://github.com/fishbar/jscoverage/pull/45 is merged
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
-COVERAGE=1 node_modules/.bin/mocha -R mocha-lcov-reporter test > .lcov
15
+#COVERAGE=1 node_modules/.bin/mocha -R mocha-lcov-reporter test > .lcov
16
-cat .lcov | node_modules/.bin/coveralls
17
+#cat .lcov | node_modules/.bin/coveralls
18
19
exit $STATUS
0 commit comments