Skip to content

Commit fdeb8f0

Browse files
authored
Fix typo in runner selection in gulp
1 parent 61b95fe commit fdeb8f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: scripts/build/tests.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ exports.cleanTestDirs = cleanTestDirs;
165165
function writeTestConfigFile(tests, runners, light, taskConfigsFolder, workerCount, stackTraceLimit, timeout, keepFailed) {
166166
const testConfigContents = JSON.stringify({
167167
test: tests ? [tests] : undefined,
168-
runner: runners ? runners.split(",") : undefined,
168+
runners: runners ? runners.split(",") : undefined,
169169
light,
170170
workerCount,
171171
stackTraceLimit,
@@ -192,4 +192,4 @@ function restoreSavedNodeEnv() {
192192

193193
function deleteTemporaryProjectOutput() {
194194
return del(path.join(exports.localBaseline, "projectOutput/"));
195-
}
195+
}

0 commit comments

Comments
 (0)