fix(test): export TestDetailsAnnotation

This commit is contained in:
Simon Knott 2024-11-20 16:37:54 +01:00
parent 94776ad18a
commit 3778b67599
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC
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';
type TestDetailsAnnotation = {
export type TestDetailsAnnotation = {
type: string;
description?: string;
};

View file

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