Skip to content

Commit 758ff97

Browse files
committed
FIx incorrect path to coverage reporter
1 parent 8b96204 commit 758ff97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vitest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const coverageReporters = ['text'];
1212
const testReporters = ['default'];
1313

1414
if (process.env.GITHUB_ACTIONS) {
15-
const reporter = pathlib.resolve(import.meta.dirname, './lib/vitest-reporter/build/coverage-reporter.js');
15+
const reporter = pathlib.resolve(import.meta.dirname, './lib/vitest-reporter/build/coverage-reporter.cjs');
1616
coverageReporters.push(reporter);
1717
testReporters.push(new GithubActionsSummaryReporter());
1818
} else {

0 commit comments

Comments
 (0)