karma-electron
Advanced tools
Comparing version 6.3.0 to 6.3.1
# karma-electron changelog | ||
6.3.1 - Upgraded to Electron@9 in `devDependencies` as part of sanity while fixing #47 | ||
6.3.0 - Fixed Windows support via removing `process.stdin` usage and encoding URLs | ||
@@ -3,0 +5,0 @@ |
{ | ||
"name": "karma-electron", | ||
"description": "Karma launcher and preprocessor for Electron", | ||
"version": "6.3.0", | ||
"version": "6.3.1", | ||
"homepage": "https://github.com/twolfson/karma-electron", | ||
@@ -58,3 +58,3 @@ "author": { | ||
"cross-env": "~1.0.7", | ||
"electron": "~5.0.3", | ||
"electron": "~9.1.0", | ||
"foundry": "~4.0.3", | ||
@@ -61,0 +61,0 @@ "foundry-release-git": "~2.0.2", |
@@ -37,4 +37,4 @@ // Load in our dependencies | ||
'Expected "' + module.filename + '" to end with "test/integration-test/test-files/custom-context.html"'); | ||
assert.strictEqual(module.id, '.'); | ||
assert.strictEqual(module.id, 'electron/js2c/renderer_init'); | ||
}); | ||
}); |
@@ -20,3 +20,3 @@ // Load in our dependencies | ||
'"integration-test/test-files/filename-override-context.html"'); | ||
assert.strictEqual(module.id, '.'); | ||
assert.strictEqual(module.id, 'electron/js2c/renderer_init'); | ||
}); | ||
@@ -23,0 +23,0 @@ |
@@ -30,5 +30,6 @@ // Load in our dependencies | ||
assert.strictEqual(typeof module.exports, 'object'); | ||
assert.strictEqual(module.id, '.'); | ||
assert.strictEqual(module.id, 'electron/js2c/renderer_init'); | ||
assert.strictEqual(submodule.loaded, true); | ||
assert.strictEqual(module.parent, null); | ||
assert.strictEqual(module.hasOwnProperty('parent'), true); | ||
assert.strictEqual(module.parent, undefined); | ||
}); | ||
@@ -35,0 +36,0 @@ }); |
67048
959