karma-electron
Advanced tools
Comparing version 7.2.0 to 7.3.0
# karma-electron changelog | ||
7.3.0 - Upgraded to Electron@20 in `devDependencies` to sanity check for #57 | ||
7.2.0 - Upgraded to async@3.2.2 via @fs-eire in #56 | ||
@@ -3,0 +5,0 @@ |
{ | ||
"name": "karma-electron", | ||
"description": "Karma launcher and preprocessor for Electron", | ||
"version": "7.2.0", | ||
"version": "7.3.0", | ||
"homepage": "https://github.com/twolfson/karma-electron", | ||
@@ -58,3 +58,3 @@ "author": { | ||
"cross-env": "~1.0.7", | ||
"electron": "~12.0.2", | ||
"electron": "~20.0.2", | ||
"foundry": "~4.0.3", | ||
@@ -61,0 +61,0 @@ "foundry-release-git": "~2.0.2", |
@@ -24,3 +24,3 @@ # karma-electron [![Build status](https://travis-ci.org/twolfson/karma-electron.svg?branch=master)](https://travis-ci.org/twolfson/karma-electron) [![Build status](https://ci.appveyor.com/api/projects/status/urgpvcip7kl9q2ih/branch/master?svg=true)](https://ci.appveyor.com/project/twolfson/karma-electron-launcher/branch/master) | ||
- This plugin has been tested against `electron@{0.x,1,5,6,7,8,9,11,12}` and should support the latest version | ||
- This plugin has been tested against `electron@{0.x,1,5,6,7,8,9,11,12,14,15,20}` and should support the latest version | ||
- This plugin is best suited for testing the renderer portion of an `electron` application | ||
@@ -27,0 +27,0 @@ - For testing a full application, see `electron's` documentation on Selenium and WebDriver |
@@ -33,3 +33,6 @@ // Load in our dependencies | ||
// DEV: While iterating on #54, we noticed Electron@15 changed from `module.parent` to `module.__proto__.parent` | ||
assert.strictEqual(module.hasOwnProperty('parent'), true); | ||
// This is caused by Node.js@16 upgrade which changed behavior, https://github.com/electron/electron/releases/tag/v15.0.0 | ||
// DEV: `Object.getPrototypeOf` is the more formal call for `__proto__` | ||
assert.strictEqual(module.hasOwnProperty('parent'), false); | ||
assert.strictEqual(Object.getPrototypeOf(module).hasOwnProperty('parent'), true); | ||
assert.strictEqual(module.parent, undefined); | ||
@@ -36,0 +39,0 @@ }); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
69347
978