Skip to content

Commit aec0b53

Browse files
authoredJan 14, 2025··
fix: cleanup vitest/reporters entrypoint (#7241)
1 parent e2e0658 commit aec0b53

File tree

11 files changed

+59
-37
lines changed

11 files changed

+59
-37
lines changed
 

‎docs/advanced/reporters.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default class CustomReporter extends BaseReporter {
3636
Or implement the `Reporter` interface:
3737

3838
```ts [custom-reporter.js]
39-
import { Reporter } from 'vitest/reporters'
39+
import type { Reporter } from 'vitest/node'
4040

4141
export default class CustomReporter implements Reporter {
4242
onCollected() {
@@ -65,9 +65,7 @@ Instead of using the tasks that reporters receive, it is recommended to use the
6565
You can get access to this API by calling `vitest.state.getReportedEntity(runnerTask)`:
6666

6767
```ts twoslash
68-
import type { Vitest } from 'vitest/node'
69-
import type { RunnerTestFile } from 'vitest'
70-
import type { Reporter, TestModule } from 'vitest/reporters'
68+
import type { Reporter, RunnerTestFile, TestModule, Vitest } from 'vitest/node'
7169

7270
class MyReporter implements Reporter {
7371
private vitest!: Vitest

‎docs/guide/migration.md

+4
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ The [`resolveConfig`](/advanced/api/#resolveconfig) is now more useful. Instead
8181

8282
This function is not used internally and exposed exclusively as a public API.
8383

84+
### Cleaned up `vitest/reporters` types <Badge type="danger">API</Badge> {#cleaned-up-vitest-reporters-types}
85+
86+
The `vitest/reporters` entrypoint now only exports reporters implementations and options types. If you need access to `TestCase`/`TestSuite` and other task related types, import them additionally from `vitest/node`.
87+
8488
## Migrating to Vitest 2.0 {#vitest-2}
8589

8690
### Default Pool is `forks`

‎packages/vitest/src/node/cli/cli-api.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { UserConfig as ViteUserConfig } from 'vite'
22
import type { environments } from '../../integrations/env'
33
import type { Vitest, VitestOptions } from '../core'
4-
import type { TestModule, TestSuite } from '../reporters'
4+
import type { TestModule, TestSuite } from '../reporters/reported-tasks'
55
import type { TestSpecification } from '../spec'
66
import type { UserConfig, VitestEnvironment, VitestRunMode } from '../types/config'
77
import { mkdirSync, writeFileSync } from 'node:fs'

‎packages/vitest/src/node/reporters/benchmark/index.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import { BenchmarkReporter } from './reporter'
22
import { VerboseBenchmarkReporter } from './verbose'
33

4+
export {
5+
BenchmarkReporter,
6+
VerboseBenchmarkReporter,
7+
}
8+
49
export const BenchmarkReportsMap = {
510
default: BenchmarkReporter,
611
verbose: VerboseBenchmarkReporter,

‎packages/vitest/src/node/reporters/index.ts

+6-26
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import type { BaseOptions, BaseReporter } from './base'
33
import type { BlobOptions } from './blob'
44
import type { DefaultReporterOptions } from './default'
55
import type { HTMLOptions } from './html'
6-
import type { ModuleDiagnostic as _FileDiagnostic } from './reported-tasks'
76
import { BasicReporter } from './basic'
87
import { BlobReporter } from './blob'
98
import { DefaultReporter } from './default'
@@ -12,7 +11,6 @@ import { GithubActionsReporter } from './github-actions'
1211
import { HangingProcessReporter } from './hanging-process'
1312
import { type JsonOptions, JsonReporter } from './json'
1413
import { type JUnitOptions, JUnitReporter } from './junit'
15-
import { TestModule as _TestFile } from './reported-tasks'
1614
import { TapReporter } from './tap'
1715
import { TapFlatReporter } from './tap-flat'
1816
import { VerboseReporter } from './verbose'
@@ -31,23 +29,17 @@ export {
3129
}
3230
export type { BaseReporter, Reporter }
3331

34-
export type { TestProject } from '../project'
35-
/**
36-
* @deprecated Use `TestModule` instead
37-
*/
38-
export const TestFile = _TestFile
39-
export * from './benchmark'
32+
export {
33+
BenchmarkBuiltinReporters,
34+
BenchmarkReporter,
35+
BenchmarkReportsMap,
36+
VerboseBenchmarkReporter,
37+
} from './benchmark'
4038
export type {
4139
JsonAssertionResult,
4240
JsonTestResult,
4341
JsonTestResults,
4442
} from './json'
45-
/**
46-
* @deprecated Use `ModuleDiagnostic` instead
47-
*/
48-
export type FileDiagnostic = _FileDiagnostic
49-
50-
export { TestCase, TestModule, TestSuite } from './reported-tasks'
5143

5244
export const ReportersMap = {
5345
'default': DefaultReporter,
@@ -78,15 +70,3 @@ export interface BuiltinReporterOptions {
7870
'hanging-process': never
7971
'html': HTMLOptions
8072
}
81-
82-
export type {
83-
TaskOptions,
84-
85-
TestCollection,
86-
TestDiagnostic,
87-
88-
TestResult,
89-
TestResultFailed,
90-
TestResultPassed,
91-
TestResultSkipped,
92-
} from './reported-tasks'

‎packages/vitest/src/node/specifications.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Vitest } from './core'
2-
import type { TestProject } from './reporters'
2+
import type { TestProject } from './project'
33
import type { TestSpecification } from './spec'
44
import { existsSync } from 'node:fs'
55
import mm from 'micromatch'

‎packages/vitest/src/node/types/tests.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { TestModule } from '../reporters'
1+
import type { TestModule } from '../reporters/reported-tasks'
22

33
export interface TestRunResult {
44
testModules: TestModule[]

‎packages/vitest/src/node/watcher.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Vitest } from './core'
2-
import type { TestProject } from './reporters'
2+
import type { TestProject } from './project'
33
import { readFileSync } from 'node:fs'
44
import { noop, slash } from '@vitest/utils'
55
import mm from 'micromatch'

‎packages/vitest/src/public/node.ts

+11
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,17 @@ export type {
143143

144144
export { createDebugger } from '../utils/debugger'
145145

146+
export type {
147+
RunnerTask,
148+
RunnerTaskResult,
149+
RunnerTaskResultPack,
150+
RunnerTestCase,
151+
RunnerTestFile,
152+
RunnerTestSuite,
153+
} from './index'
154+
export type {
155+
Reporter,
156+
} from './reporters'
146157
export { generateFileHash } from '@vitest/runner/utils'
147158

148159
export {
+26-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,26 @@
1-
export * from '../node/reporters'
1+
export {
2+
BasicReporter,
3+
BenchmarkReporter,
4+
BenchmarkReportsMap,
5+
DefaultReporter,
6+
DotReporter,
7+
GithubActionsReporter,
8+
HangingProcessReporter,
9+
JsonReporter,
10+
JUnitReporter,
11+
ReportersMap,
12+
TapFlatReporter,
13+
TapReporter,
14+
VerboseBenchmarkReporter,
15+
VerboseReporter,
16+
} from '../node/reporters'
17+
export type {
18+
BaseReporter,
19+
BenchmarkBuiltinReporters,
20+
BuiltinReporterOptions,
21+
BuiltinReporters,
22+
JsonAssertionResult,
23+
JsonTestResult,
24+
JsonTestResults,
25+
Reporter,
26+
} from '../node/reporters'

‎test/reporters/tests/task-parser.test.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import type { File, Test } from '@vitest/runner'
2-
import type { TestSpecification } from 'vitest/node'
3-
import type { Reporter } from 'vitest/reporters'
2+
import type { Reporter, TestSpecification } from 'vitest/node'
43
import type { HookOptions } from '../../../packages/vitest/src/node/reporters/task-parser'
54
import { expect, test } from 'vitest'
65
import { TaskParser } from '../../../packages/vitest/src/node/reporters/task-parser'

0 commit comments

Comments
 (0)