From 668f316465495067bf19958d402b9d0d241ae839 Mon Sep 17 00:00:00 2001 From: Lars Jung Date: Sun, 26 Apr 2015 18:10:31 +0200 Subject: [PATCH] Refactor tests. --- test/scripts.js | 10 ++++++++-- test/tests/{unit => }/premisses.js | 0 2 files changed, 8 insertions(+), 2 deletions(-) rename test/tests/{unit => }/premisses.js (100%) diff --git a/test/scripts.js b/test/scripts.js index db073bf4..883b6ae9 100644 --- a/test/scripts.js +++ b/test/scripts.js @@ -19,17 +19,23 @@ util.setupMocha(); describe('all tests', function () { + // @include "tests/premisses.js" + describe('unit tests', function () { - // @include "tests/unit/premisses.js" + // @include "tests/unit/modulejs.js" // @include "tests/unit/libs.js" // @include "tests/unit/boot.js" // @include "tests/unit/config.js" + // @include "tests/unit/*/*.js" }); describe('integration tests', function () { - // @include "tests/integration/**/*.js" + + // @include "tests/integration/first.js" + + // @include "tests/integration/*/*.js" }); }); diff --git a/test/tests/unit/premisses.js b/test/tests/premisses.js similarity index 100% rename from test/tests/unit/premisses.js rename to test/tests/premisses.js