jasmine-core 6.0.0-beta.0 → 6.0.0-beta.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.
@@ -49,11 +49,16 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
49
49
  */
50
50
  env.configure(urls.configFromCurrentUrl());
51
51
 
52
- window.addEventListener('load', function() {
52
+ const currentWindowOnload = window.onload;
53
+ window.onload = function() {
54
+ if (currentWindowOnload) {
55
+ currentWindowOnload();
56
+ }
57
+
53
58
  // The HTML reporter needs to be set up here so it can access the DOM. Other
54
59
  // reporters can be added at any time before env.execute() is called.
55
60
  const htmlReporter = new jasmine.HtmlReporterV2({ env, urls });
56
61
  env.addReporter(htmlReporter);
57
62
  env.execute();
58
- });
63
+ };
59
64
  })();
@@ -12385,5 +12385,5 @@ getJasmineRequireObj().UserContext = function(j$) {
12385
12385
  };
12386
12386
 
12387
12387
  getJasmineRequireObj().version = function() {
12388
- return '6.0.0-beta.0';
12388
+ return '6.0.0-beta.1';
12389
12389
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jasmine-core",
3
3
  "license": "MIT",
4
- "version": "6.0.0-beta.0",
4
+ "version": "6.0.0-beta.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/jasmine/jasmine.git"
@@ -43,10 +43,10 @@
43
43
  "ejs": "^3.1.10",
44
44
  "eslint": "^9.24.0",
45
45
  "eslint-plugin-compat": "^6.0.2",
46
- "glob": "^10.2.3",
46
+ "glob": "^13.0.0",
47
47
  "globals": "^16.0.0",
48
- "jasmine": "github:jasmine/jasmine-npm#6.0",
49
- "jasmine-browser-runner": "github:jasmine/jasmine-browser-runner#4.0",
48
+ "jasmine": "github:jasmine/jasmine-npm",
49
+ "jasmine-browser-runner": "github:jasmine/jasmine-browser-runner",
50
50
  "jsdom": "^26.0.0",
51
51
  "prettier": "1.17.1",
52
52
  "sass": "^1.58.3"