Skip to content

Commit

Permalink
upgrade to jasmine 2.5.2, fix dot reporter removal
Browse files Browse the repository at this point in the history
  • Loading branch information
disjunction committed Oct 4, 2016
1 parent 32a4cc0 commit 8a06ee4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jasme",
"version": "4.1.4",
"description": "simplistic node.js jasmine 2.4 launcher",
"version": "5.2.0",
"description": "simplistic node.js jasmine 2.5 launcher",
"main": "jasmine.js",
"scripts": {
"test": "./run.js --boot=./testBoot"
Expand All @@ -21,9 +21,9 @@
"cli"
],
"dependencies": {
"jasmine": "^2.4.1",
"jasmine-reporters": "^2.1.1",
"jasmine-spec-reporter": "^2.4.0"
"jasmine": "^2.5.2",
"jasmine-reporters": "^2.2.0",
"jasmine-spec-reporter": "^2.7.0"
},
"license": "WTFPL"
}
4 changes: 2 additions & 2 deletions run.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ for (var i = 2; i < process.argv.length; i++) {

var jasmine = new Jasmine({ projectBaseDir: path.resolve() });

// hack - remove dot-reporter
jasmine.configureDefaultReporter({print: function() {} });
// remove default default console reporter (the one with dots)
jasmine.env.clearReporters();

// add console reporter with colors
var SpecReporter = require("jasmine-spec-reporter");
Expand Down

0 comments on commit 8a06ee4

Please sign in to comment.