jasmine-core 5.12.0 → 5.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11514,7 +11514,10 @@ getJasmineRequireObj().TreeRunner = function(j$) {
11514
11514
  _executeSpec(spec, specOverallDone) {
11515
11515
  const onStart = next => {
11516
11516
  this.#currentRunableTracker.setCurrentSpec(spec);
11517
- this.#runableResources.initForRunable(spec.id, spec.parentSuiteId);
11517
+ this.#runableResources.initForRunable(
11518
+ spec.id,
11519
+ spec.parentSuiteId || this.#executionTree.topSuite.id
11520
+ );
11518
11521
  this.#reportDispatcher.specStarted(spec.result).then(next);
11519
11522
  };
11520
11523
  const resultCallback = (result, next) => {
@@ -11788,5 +11791,5 @@ getJasmineRequireObj().UserContext = function(j$) {
11788
11791
  };
11789
11792
 
11790
11793
  getJasmineRequireObj().version = function() {
11791
- return '5.12.0';
11794
+ return '5.12.1';
11792
11795
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jasmine-core",
3
3
  "license": "MIT",
4
- "version": "5.12.0",
4
+ "version": "5.12.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/jasmine/jasmine.git"