Add empty spec skeleton.
This commit is contained in:
parent
9b828ce39a
commit
2560782d54
3 changed files with 61 additions and 0 deletions
14
spec/main.js
Normal file
14
spec/main.js
Normal 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();
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue