Add order for tests

This commit is contained in:
Samy Pessé
2016-01-28 23:23:56 +01:00
parent ea98444dc0
commit ff30ba62ba
9 changed files with 18 additions and 1 deletions
+1 -1
View File
@@ -64,7 +64,7 @@
"gitbook-markdown-css": "1.0.1"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --timeout 15000"
"test": "node_modules/.bin/mocha --reporter spec --timeout 15000 ./test/all.js"
},
"repository": {
"type": "git",
+11
View File
@@ -0,0 +1,11 @@
// Parsing
require('./config');
require('./readme');
require('./summary');
require('./glossary');
require('./langs');
require('./parse');
// Output
require('./output-json');
View File
View File
+6
View File
@@ -0,0 +1,6 @@
var mock = require('./mock');
describe('JSON Output', function() {
});
View File
View File