2013-07-17 08:28:14 +00:00
|
|
|
var app = require('app');
|
2013-07-26 07:53:00 +00:00
|
|
|
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');
|
|
|
|
|
2013-07-26 07:53:00 +00:00
|
|
|
ipc.on('message', function() {
|
|
|
|
ipc.send.apply(this, arguments);
|
|
|
|
});
|
|
|
|
|
2013-07-19 02:47:00 +00:00
|
|
|
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() {
|
|
|
|
window = new BrowserWindow({
|
|
|
|
title: 'atom-shell tests',
|
|
|
|
width: 800,
|
|
|
|
height: 600
|
|
|
|
});
|
|
|
|
window.loadUrl('file://' + __dirname + '/index.html');
|
|
|
|
window.focus();
|
|
|
|
});
|