Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/common/apps.ts
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/playground/e2e/playwright.config.ts
Original file line number Diff line number Diff line change
@@ -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 });
2 changes: 1 addition & 1 deletion examples/playground/e2e/playwright.dev.config.ts
Original file line number Diff line number Diff line change
@@ -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,
Expand Down