Add empty spec skeleton.

This commit is contained in:
Cheng Zhao 2013-07-17 16:28:14 +08:00
parent 9b828ce39a
commit 2560782d54
3 changed files with 61 additions and 0 deletions

14
spec/main.js Normal file
View file

@ -0,0 +1,14 @@
var app = require('app');
var BrowserWindow = require('browser-window');
var window = null;
app.on('finish-launching', function() {
window = new BrowserWindow({
title: 'atom-shell tests',
width: 800,
height: 600
});
window.loadUrl('file://' + __dirname + '/index.html');
window.focus();
});