Skip to content

Commit

Permalink
fix(test): export TestDetailsAnnotation (#33698)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skn0tt authored Nov 20, 2024
1 parent 6a32589 commit fc19e6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/playwright/types/test.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down
2 changes: 1 addition & 1 deletion utils/generate_types/overrides-test.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit fc19e6e

Please sign in to comment.