Skip to content

Commit db3d1e3

Browse files
committed
[DO NOT MERGE] Bypass tests
1 parent 70b5fb8 commit db3d1e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Gulpfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ const cleanTypesMap = () => del("built/local/typesMap.json");
413413
cleanTasks.push(cleanTypesMap);
414414

415415
// Drop a copy of diagnosticMessages.generated.json into the built/local folder. This allows
416-
// it to be synced to the Azure DevOps repo, so that it can get picked up by the build
416+
// it to be synced to the Azure DevOps repo, so that it can get picked up by the build
417417
// pipeline that generates the localization artifacts that are then fed into the translation process.
418418
const builtLocalDiagnosticMessagesGeneratedJson = "built/local/diagnosticMessages.generated.json";
419419
const copyBuiltLocalDiagnosticMessages = () => src(diagnosticMessagesGeneratedJson)
@@ -472,7 +472,7 @@ task("runtests").flags = {
472472
};
473473

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

0 commit comments

Comments
 (0)