-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix CI; closes #2867 #2868
fix CI; closes #2867 #2868
Changes from all commits
377b1bb
9cdb4c2
fa0169b
31a8acf
1fe4b74
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -320,6 +320,7 @@ | |
"supports-color": "3.1.2" | ||
}, | ||
"devDependencies": { | ||
"@coderbyheart/karma-sauce-launcher": "coderbyheart/karma-sauce-launcher#5259942cd6d40090eaa13ceeef5b0b8738c7710f", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I'm using the changeset SHA here to avoid pulling down any subsequent commits to I have another branch wherein the Mocha org owns a fork, so we have complete control over how it behaves -- and what upgrades it receives. (This was done in the first place because the original package is not-very-well maintained) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looking forward to switching to our fork, although I have some questions I need to get on there and ask about that too... |
||
"assert": "^1.4.1", | ||
"browserify": "^13.0.0", | ||
"coffee-script": "^1.10.0", | ||
|
@@ -337,7 +338,6 @@ | |
"karma-expect": "^1.1.2", | ||
"karma-mocha": "^1.3.0", | ||
"karma-phantomjs-launcher": "0.2.3", | ||
"karma-sauce-launcher": "coderbyheart/karma-sauce-launcher", | ||
"karma-spec-reporter": "0.0.26", | ||
"nyc": "^10.0.0", | ||
"os-name": "^2.0.1", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,7 @@ var mocha = new Mocha({ | |
growl: true | ||
}); | ||
|
||
// mocha.reporter('spec'); | ||
require('should'); | ||
global.expect = require('expect.js'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As noted in #2882, jsapi runs a subset of the unit tests, which now all use |
||
|
||
mocha.addFile('test/unit/suite.spec.js'); | ||
mocha.addFile('test/unit/runner.spec.js'); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The plugin is named 'karma-sauce-launcher', but the package is named something else, so we have to do this. Unfortunately, if you start specifying plugins, you have to specify all of them.