spec: node-integration should work in web-preferences

This commit is contained in:
Cheng Zhao 2015-09-10 15:30:41 +08:00
parent 6321a3898c
commit d4cbf7cadb
4 changed files with 40 additions and 10 deletions

4
spec/fixtures/module/send-later.js vendored Normal file
View file

@ -0,0 +1,4 @@
var ipc = require('ipc');
window.onload = function() {
ipc.send('answer', typeof window.process);
}