diff --git a/examples/common/apps.ts b/examples/common/apps.ts index a9ed13d3..b3f8d908 100644 --- a/examples/common/apps.ts +++ b/examples/common/apps.ts @@ -1,9 +1,9 @@ // List of all e2e tested apps const apps = [ // examples - "api", "create-next-app", "middleware", + "playground", "vercel-blog-starter", "vercel-commerce", // e2e diff --git a/examples/playground/e2e/playwright.config.ts b/examples/playground/e2e/playwright.config.ts index 2eba40fe..28f57bfc 100644 --- a/examples/playground/e2e/playwright.config.ts +++ b/examples/playground/e2e/playwright.config.ts @@ -1,3 +1,3 @@ import { configurePlaywright } from "../../common/config-e2e"; -export default configurePlaywright("api", { isCI: !!process.env.CI }); +export default configurePlaywright("playground", { isCI: !!process.env.CI }); diff --git a/examples/playground/e2e/playwright.dev.config.ts b/examples/playground/e2e/playwright.dev.config.ts index 5e263df0..e05469fb 100644 --- a/examples/playground/e2e/playwright.dev.config.ts +++ b/examples/playground/e2e/playwright.dev.config.ts @@ -1,6 +1,6 @@ import { configurePlaywright } from "../../common/config-e2e"; -export default configurePlaywright("api", { +export default configurePlaywright("playground", { isCI: !!process.env.CI, isWorker: false, multipleBrowsers: false,