Skip to content

Commit af1930b

Browse files
committed
Fix formatting of coverageReporters in getCoverageCommand function
1 parent 10be092 commit af1930b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/scripts/run-many/run-many.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function getE2ECommand(command: string, base: string): string {
1010
function getCoverageCommand(command: string): string {
1111
core.info(`Before coverage command: ${command}`);
1212
command = command.concat(
13-
`--codeCoverage --coverageReporters=["html", "lcov"]`
13+
`--codeCoverage=true --coverageReporters=["html", "lcov"]`
1414
);
1515
core.info(`After coverage command: ${command}`);
1616
return command;

0 commit comments

Comments
 (0)