Add basic test of spawned ELECTRON_RUN_AS_NODE process

This commit is contained in:
Kevin Sawicki 2016-10-12 13:01:43 -07:00
parent b01fd9715b
commit e899050500
2 changed files with 28 additions and 0 deletions

5
spec/fixtures/module/run-as-node.js vendored Normal file
View file

@ -0,0 +1,5 @@
console.log(JSON.stringify({
processLog: typeof process.log,
processType: typeof process.type,
window: typeof window
}))