Add empty spec skeleton.
This commit is contained in:
parent
9b828ce39a
commit
2560782d54
3 changed files with 61 additions and 0 deletions
38
spec/index.html
Normal file
38
spec/index.html
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link href="node_modules/mocha/mocha.css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div id="mocha"></div>
|
||||||
|
|
||||||
|
<script type="text/javascript" charset="utf-8">
|
||||||
|
(function() {
|
||||||
|
require('coffee-script'); // Supports .coffee tests.
|
||||||
|
|
||||||
|
var Mocha = require('mocha');
|
||||||
|
|
||||||
|
var mocha = new Mocha();
|
||||||
|
mocha.ui('bdd').reporter('html');
|
||||||
|
|
||||||
|
var query = Mocha.utils.parseQuery(window.location.search || '');
|
||||||
|
if (query.grep) mocha.grep(query.grep);
|
||||||
|
if (query.invert) mocha.invert();
|
||||||
|
|
||||||
|
// Read all test files.
|
||||||
|
var finder = require('findit').find(__dirname);
|
||||||
|
|
||||||
|
finder.on('file', function(file) {
|
||||||
|
if (/.coffee$/.test(file))
|
||||||
|
mocha.addFile(file);
|
||||||
|
});
|
||||||
|
|
||||||
|
finder.on('end', function() {
|
||||||
|
mocha.run(function() {
|
||||||
|
Mocha.utils.highlightTags('code');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
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();
|
||||||
|
});
|
9
spec/package.json
Normal file
9
spec/package.json
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"name": "atom-shell-specs",
|
||||||
|
"main": "main.js",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"dependencies": {
|
||||||
|
"mocha": "*",
|
||||||
|
"findit": "*"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue