electron/spec/main.js

49 lines
1 KiB
JavaScript
Raw Normal View History

2013-07-17 08:28:14 +00:00
var app = require('app');
var ipc = require('ipc');
2013-07-17 08:28:14 +00:00
var BrowserWindow = require('browser-window');
var window = null;
2013-07-29 08:35:42 +00:00
app.commandLine.appendSwitch('js-flags', '--expose_gc');
ipc.on('message', function() {
ipc.send.apply(this, arguments);
});
ipc.on('console.log', function(pid, rid, args) {
console.log.apply(console, args);
});
ipc.on('console.error', function(pid, rid, args) {
console.log.apply(console, args);
});
ipc.on('process.exit', function(pid, rid, code) {
process.exit(code);
});
ipc.on('eval', function(ev, pid, rid, script) {
ev.result = eval(script);
});
process.on('uncaughtException', function() {
window.openDevTools();
});
app.on('window-all-closed', function() {
app.terminate();
});
2013-07-17 08:28:14 +00:00
app.on('finish-launching', function() {
// Test if using protocol module would crash.
require('protocol').registerProtocol('test-if-crashes', function() {});
2013-07-17 08:28:14 +00:00
window = new BrowserWindow({
title: 'atom-shell tests',
2013-08-21 03:35:39 +00:00
show: false,
2013-07-17 08:28:14 +00:00
width: 800,
height: 600
});
window.loadUrl('file://' + __dirname + '/index.html');
});