27 lines
550 B
JavaScript
27 lines
550 B
JavaScript
var app = require('app');
|
|
var ipc = require('ipc');
|
|
var BrowserWindow = require('browser-window');
|
|
|
|
var window = null;
|
|
|
|
ipc.on('message', function() {
|
|
ipc.send.apply(this, arguments);
|
|
});
|
|
|
|
process.on('uncaughtException', function() {
|
|
window.openDevTools();
|
|
});
|
|
|
|
app.on('window-all-closed', function() {
|
|
app.terminate();
|
|
});
|
|
|
|
app.on('finish-launching', function() {
|
|
window = new BrowserWindow({
|
|
title: 'atom-shell tests',
|
|
width: 800,
|
|
height: 600
|
|
});
|
|
window.loadUrl('file://' + __dirname + '/index.html');
|
|
window.focus();
|
|
});
|