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

@@ -22,7 +22,7 @@ suite("generation", function () {
_.each(helper.get("generation"), function (testSuite) {
suite("generation/" + testSuite.title, function () {
_.each(testSuite.tests, function (task) {
test(task.title, function () {
test(task.title, !task.disabled && function () {
var expect = task.expect;
var actual = task.actual;