Fix typo & some spacing

This commit is contained in:
Don Nguyen
2021-07-11 17:00:00 -05:00
parent e8f36a3496
commit d2b6ee04fa

View File

@@ -24,8 +24,8 @@ function createWindow(): BrowserWindow {
webPreferences: { webPreferences: {
nodeIntegration: true, nodeIntegration: true,
allowRunningInsecureContent: (serve) ? true : false, allowRunningInsecureContent: (serve) ? true : false,
contextIsolation: false, // false if you want to run 2e2 test with Spectron contextIsolation: false, // false if you want to run e2e test with Spectron
enableRemoteModule : true // true if you want to run 2e2 test with Spectron or use remote module in renderer context (ie. Angular) enableRemoteModule : true // true if you want to run e2e test with Spectron or use remote module in renderer context (ie. Angular)
}, },
}); });