Add support for returning run details for reporting randomness

[#92249258]
This commit is contained in:
Gregg Van Hove
2015-11-04 12:05:29 -08:00
parent d2f2e2b870
commit c1ab3c9cbe
2 changed files with 11 additions and 1 deletions

View File

@@ -248,4 +248,12 @@ describe("JsApiReporter", function() {
});
});
});
describe('#runDetails', function() {
it('should have details about the run', function() {
var reporter = new j$.JsApiReporter({});
reporter.jasmineDone({some: {run: 'details'}});
expect(reporter.runDetails).toEqual({some: {run: 'details'}});
});
});
});