Temporarily replace go-to-def with new command implementation

This commit is contained in:
Andrew Branch
2022-03-14 17:00:43 -07:00
parent 43c01e26a7
commit 34c6cfdebb
2 changed files with 31 additions and 31 deletions

View File

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