-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: run tests via .js file to configure color
- Loading branch information
1 parent
c3db07f
commit 85e8776
Showing
3 changed files
with
16 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
var Jasmine = require("jasmine"); | ||
var jasmine = new Jasmine(); | ||
|
||
jasmine.loadConfig({ | ||
// Config reference: https://jasmine.github.io/api/npm/edge/Configuration.html | ||
random: false, | ||
spec_dir: "test", | ||
spec_files: ["api_spec.js"], | ||
stopSpecOnExpectationFailure: false, | ||
}); | ||
jasmine.configureDefaultReporter({ | ||
// Options reference: https://jasmine.github.io/api/npm/edge/ConsoleReporterOptions.html | ||
showColors: true, | ||
}); | ||
jasmine.execute(); |
This file was deleted.
Oops, something went wrong.