chore: export SerializedTestProject from vitest/node

This commit is contained in:
Vladimir Sheremet 2024-10-15 14:05:38 +02:00
parent c0a2f3fc56
commit 7a375cd144
No known key found for this signature in database
GPG Key ID: 182FA0724B9B2267
2 changed files with 2 additions and 1 deletions

View File

@ -70,7 +70,7 @@ export class TestProject {
}
}
interface SerializedTestProject {
export interface SerializedTestProject {
name: string
serializedConfig: SerializedConfig
context: ProvidedContext

View File

@ -67,6 +67,7 @@ export { TestCase, TestModule, TestSuite } from '../node/reporters/reported-task
*/
export const TestFile = _TestFile
export { TestProject } from '../node/reported-workspace-project'
export type { SerializedTestProject } from '../node/reported-workspace-project'
export type {
TestCollection,