fix(test): export TestDetailsAnnotation (#33698)

This commit is contained in:
Simon Knott 2024-11-20 17:28:56 +01:00 committed by GitHub
parent 6a32589330
commit fc19e6e7b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1849,7 +1849,7 @@ export interface FullConfig<TestArgs = {}, WorkerArgs = {}> {
export type TestStatus = 'passed' | 'failed' | 'timedOut' | 'skipped' | 'interrupted'; export type TestStatus = 'passed' | 'failed' | 'timedOut' | 'skipped' | 'interrupted';
type TestDetailsAnnotation = { export type TestDetailsAnnotation = {
type: string; type: string;
description?: string; description?: string;
}; };

View File

@ -65,7 +65,7 @@ export interface FullConfig<TestArgs = {}, WorkerArgs = {}> {
export type TestStatus = 'passed' | 'failed' | 'timedOut' | 'skipped' | 'interrupted'; export type TestStatus = 'passed' | 'failed' | 'timedOut' | 'skipped' | 'interrupted';
type TestDetailsAnnotation = { export type TestDetailsAnnotation = {
type: string; type: string;
description?: string; description?: string;
}; };