Skip to content
Open
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 .github/workflows/endform-tests-on-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Wait for Vercel deployment
uses: endformdev/actions/run-with-vercel-deployment@main
with:
project-name: endform-playwright-tutorial
project-name: playwright-tutorial
set-url-env-var: BASE_URL # Sets the Vercel preview URL as the BASE_URL environment variable
set-vercel-bypass-env-var: VERCEL_BYPASS_TOKEN # Exports a deployment protection bypass token as this env var

Expand Down
2 changes: 1 addition & 1 deletion mcp-user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { createUserInFile, deleteUserFromFile } from "./setup-utils";
process.exit(1);
}

const baseURL = "https://endform-playwright-tutorial.vercel.app";
const baseURL = "https://playwright-tutorial.vercel.app";
// const baseURL = "http://localhost:3000";

if (scriptArg === "create") {
Expand Down
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import type { PlaywrightOpentelemetryUseOptions } from "playwright-opentelemetry
// dotenv.config({ path: path.resolve(__dirname, '.env') });

export const baseURL =
process.env.BASE_URL || "https://endform-playwright-tutorial.vercel.app";
process.env.BASE_URL || "https://playwright-tutorial.vercel.app";

const playwrightOtelEnabled = Boolean(
process.env.PLAYWRIGHT_TRACE_API_ENDPOINT ||
Expand Down
2 changes: 1 addition & 1 deletion tests/support/faults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,6 @@ async function setAppFaultHeader(page: Page, faultName: FaultName) {

function getBaseUrl() {
return (
process.env.BASE_URL || "https://endform-playwright-tutorial.vercel.app"
process.env.BASE_URL || "https://playwright-tutorial.vercel.app"
);
}