diff --git a/src/playwright/hooks.ts b/src/playwright/hooks.ts index 05be178a..dcc094ab 100644 --- a/src/playwright/hooks.ts +++ b/src/playwright/hooks.ts @@ -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[]; }; }