Skip to content

Commit a02969a

Browse files
committed
refactor(plugin-coverage): avoid implementation in index.ts file
1 parent 11deecf commit a02969a

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

packages/plugin-coverage/src/lib/coverage-plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
type CoverageType,
1212
coveragePluginConfigSchema,
1313
} from './config.js';
14-
import { createRunnerFunction } from './runner/index.js';
14+
import { createRunnerFunction } from './runner/runner.js';
1515
import { coverageDescription, coverageTypeWeightMapper } from './utils.js';
1616

1717
/**

packages/plugin-coverage/src/lib/runner/runner.int.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import path from 'node:path';
22
import { fileURLToPath } from 'node:url';
33
import { expect } from 'vitest';
44
import { type AuditOutputs, DEFAULT_PERSIST_CONFIG } from '@code-pushup/models';
5-
import { createRunnerFunction } from './index.js';
5+
import { createRunnerFunction } from './runner.js';
66

77
describe('createRunnerFunction', () => {
88
it('should successfully execute runner', async () => {
File renamed without changes.

0 commit comments

Comments
 (0)