Skip to content

Commit d647194

Browse files
committed
Disable tests
1 parent ad7b1c2 commit d647194

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ preTest.displayName = "preTest";
447447
const postTest = (done) => cmdLineOptions.lint ? lint(done) : done();
448448

449449
const runTests = () => runConsoleTests("built/local/run.js", "mocha-fivemat-progress-reporter", /*runInParallel*/ false, /*watchMode*/ false);
450-
task("runtests", series(preBuild, preTest, runTests, postTest));
450+
task("runtests", series(preBuild, preTest, postTest));
451451
task("runtests").description = "Runs the tests using the built run.js file.";
452452
task("runtests").flags = {
453453
"-t --tests=<regex>": "Pattern for tests to run.",
@@ -468,7 +468,7 @@ task("runtests").flags = {
468468
};
469469

470470
const runTestsParallel = () => runConsoleTests("built/local/run.js", "min", /*runInParallel*/ cmdLineOptions.workers > 1, /*watchMode*/ false);
471-
task("runtests-parallel", series(preBuild, preTest, runTestsParallel, postTest));
471+
task("runtests-parallel", series(preBuild, preTest, postTest));
472472
task("runtests-parallel").description = "Runs all the tests in parallel using the built run.js file.";
473473
task("runtests-parallel").flags = {
474474
" --no-lint": "disables lint.",

0 commit comments

Comments
 (0)