Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@ rules:
semi:
- error
- always
no-console:
- error
- allow:
- error
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ before_install:
before_script:
- npm install
script:
- if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then gulp ci; else gulp test-pr; fi
- if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then npm run lint && npm run test-ci; else npm run test-pr; fi
68 changes: 0 additions & 68 deletions gulpfile.js

This file was deleted.

4 changes: 2 additions & 2 deletions karma.conf.ci.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = function(config) {
if (!process.env.SAUCE_USERNAME || !process.env.SAUCE_ACCESS_KEY) {
console.log('Make sure the SAUCE_USERNAME and SAUCE_ACCESS_KEY environment variables are set.');
console.error('Make sure the SAUCE_USERNAME and SAUCE_ACCESS_KEY environment variables are set.');
process.exit(1);
}

Expand Down Expand Up @@ -156,7 +156,7 @@ module.exports = function(config) {
},
customLaunchers: customLaunchers,
browsers: Object.keys(customLaunchers),
reporters: ['dots', 'saucelabs', 'coverage'],
reporters: ['dots', 'saucelabs', 'coverage', 'coveralls'],
preprocessors: {
'stackframe.js': 'coverage'
},
Expand Down
Loading