Skip to content

Commit

Permalink
Merge 6ed55fd into b7700fd
Browse files Browse the repository at this point in the history
  • Loading branch information
thenickdude committed Jun 5, 2021
2 parents b7700fd + 6ed55fd commit 29f5b6a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -11,7 +11,7 @@ node_js:
- "0.8"
before_install:
- "npm install -g npm@4.3.0"
- "npm install -g mocha@2.x voc"
- "npm install -g voc"
- "npm install codepage"
- "npm install blanket"
- "npm install coveralls mocha-lcov-reporter"
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -34,7 +34,7 @@ clean: clean-baseline ## Remove targets and build artifacts

.PHONY: test mocha
test mocha: test.js $(TARGET) baseline ## Run test suite
mocha -R spec -t 60000
./node_modules/.bin/mocha -R spec -t 60000

.PHONY: ctest
ctest: ## Build browser test (into ctest/ subdirectory)
Expand Down Expand Up @@ -88,11 +88,11 @@ flow: lint ## Run flow checker
cov: misc/coverage.html ## Run coverage test

misc/coverage.html: $(TARGET) test.js
mocha --require blanket -R html-cov -t 30000 > $@
./node_modules/.bin/mocha --require blanket -R html-cov -t 30000 > $@

.PHONY: coveralls
coveralls: ## Coverage Test + Send to coveralls.io
mocha --require blanket --reporter mocha-lcov-reporter -t 20000 | node ./node_modules/coveralls/bin/coveralls.js
./node_modules/.bin/mocha --require blanket --reporter mocha-lcov-reporter -t 20000 | node ./node_modules/coveralls/bin/coveralls.js

MDLINT=README.md
.PHONY: mdlint
Expand Down

0 comments on commit 29f5b6a

Please sign in to comment.