Merge pull request #458 from epoberezkin/test-node-567

Test node 567
master
Evgeny Poberezkin 2017-04-07 23:23:03 +01:00 committed by GitHub
commit 5dcc96bb8d
2 changed files with 4 additions and 4 deletions

View File

@ -3,11 +3,11 @@ before_script:
- git submodule update --init
- npm install -g codeclimate-test-reporter
node_js:
- "0.10"
- "0.12"
- "4"
# - "5"
# - "6"
- "5"
- "6"
- "7"
after_script:
- codeclimate-test-reporter < coverage/lcov.info
- coveralls < coverage/lcov.info

View File

@ -28,7 +28,7 @@
"build": "del-cli lib/dotjs/*.js && node scripts/compile-dots.js",
"test-karma": "karma start --single-run --browsers PhantomJS",
"test-browser": "del-cli .browser && npm run bundle-all && scripts/prepare-tests && npm run test-karma",
"test": "npm run jshint && npm run eslint && npm run test-ts && npm run build && npm run test-cov && npm run test-browser",
"test": "npm run jshint && npm run eslint && npm run test-ts && npm run build && npm run test-cov && if-node-version 4 npm run test-browser",
"prepublish": "npm run build && npm run bundle-all",
"watch": "watch 'npm run build' ./lib/dot"
},