Przeglądaj źródła

fix playwight config

Shun Miyazawa 2 lat temu
rodzic
commit
c02d666f51
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      apps/app/playwright.config.ts

+ 1 - 1
apps/app/playwright.config.ts

@@ -13,7 +13,7 @@ const supportedBrowsers = ['chromium', 'firefox', 'webkit'] as const;
 const projects: Array<Project> = supportedBrowsers.map(browser => ({
   name: browser,
   use: { ...devices[`Desktop ${browser}`], storageState },
-  testIgnore: /10-installer\/.*\.spec\.ts/,
+  testIgnore: /(10-installer|21-basic-features-for-guest)\/.*\.spec\.ts/,
   dependencies: ['setup', 'auth'],
 }));