Skip to content

Commit

Permalink
Merge pull request #391 from stramel/patch-2
Browse files Browse the repository at this point in the history
fix: Make tags optional in TestRunnerConfig
  • Loading branch information
yannbf committed Nov 16, 2023
2 parents ccab8de + 6541350 commit d2665d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/playwright/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ export interface TestRunnerConfig {
/**
* Tags to include, exclude, or skip. These tags are defined as annotations in your story or meta.
*/
tags: {
include: string[];
exclude: string[];
skip: string[];
tags?: {
include?: string[];
exclude?: string[];
skip?: string[];
};
}

Expand Down

0 comments on commit d2665d1

Please sign in to comment.