jasmine-json-reporter
v1.0.0
Published
Write Jasmine results to local JSON file.
Readme
jasmine-json-reporter
How to install custom reporters
Install reporter locally
npm install --save jasmine-json-reporterRequire and inject reporter into Jasmine before the tests.
var reporter = require('jasmine-json-reporter');
jasmine.getEnv().addReporter(reporter);
describe("helloWorld", function() {
it("returns the string Hello World", function() {
expect(yourCode.helloWorld()).toEqual("Hello World");
});
});
});
...