Skip to content

Commit

Permalink
move the "only" specs out of test/misc/only/ and into test/only/
Browse files Browse the repository at this point in the history
  • Loading branch information
boneskull committed Sep 30, 2017
1 parent 16ffca2 commit 49e01d5
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 9 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -122,24 +122,24 @@ test-reporters:
test-only:
@printf "==> [Test :: Only]\n"
$(call test_node,only-tdd) --ui tdd \
test/misc/only/tdd.spec
test/only/tdd.spec

$(call test_node,only-bdd) --ui bdd \
test/misc/only/bdd.spec
test/only/bdd.spec

$(call test_node,only-bdd-require) --ui qunit \
test/misc/only/bdd-require.spec
test/only/bdd-require.spec

test-global-only:
@printf "==> [Test :: Global Only]\n"
$(call test_node,global-only-tdd) --ui tdd \
test/misc/only/global/tdd.spec
test/only/global/tdd.spec

$(call test_node,global-only-bdd) --ui bdd \
test/misc/only/global/bdd.spec
test/only/global/bdd.spec

$(call test_node,global-only-qunit) --ui qunit \
test/misc/only/global/qunit.spec
test/only/global/qunit.spec

test-mocha:
@printf "==> [Test :: Mocha]\n"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
'use strict';

/* jshint node: true */

var mocha = require('../../../lib/mocha');
var mocha = require('../../lib/mocha');

var beforeEach = mocha.beforeEach;
var it = mocha.it;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 49e01d5

Please sign in to comment.