Report the random seed at the beginning and end of execution

This allows reporters to provide the seed to the user even in cases
where Jasmine crashes before completing.
This commit is contained in:
Steve Gravrock
2017-05-08 11:36:18 -07:00
parent 2835ca3cce
commit e6a7932ec1
2 changed files with 38 additions and 5 deletions

View File

@@ -254,7 +254,8 @@ getJasmineRequireObj().Env = function(j$) {
}
reporter.jasmineStarted({
totalSpecsDefined: totalSpecsDefined
totalSpecsDefined: totalSpecsDefined,
order: order
});
currentlyExecutingSuites.push(topSuite);