instead of ignoring dot tests, add them as pending

This commit is contained in:
Sebastian McKenzie
2014-11-15 02:49:28 +11:00
parent 47c6f74251
commit 682806f1ca
3 changed files with 3 additions and 4 deletions

View File

@@ -64,7 +64,7 @@ var run = function (task) {
_.each(helper.get("transformation"), function (testSuite) {
suite("transformation/" + testSuite.title, function () {
_.each(testSuite.tests, function (task) {
test(task.title, function () {
test(task.title, !task.disabled && function () {
var runTask = function () {
run(task);
};