From 654135060816c2bb8545c323d67a319f300062b1 Mon Sep 17 00:00:00 2001 From: Michael Stramel Date: Thu, 16 Nov 2023 11:19:17 -0600 Subject: [PATCH] fix: Make tags optional in TestRunnerConfig --- src/playwright/hooks.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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[]; }; }