We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc11fd5 commit 495bb53Copy full SHA for 495bb53
template/frontend/tests/setup/globalSetup.ts
@@ -27,6 +27,7 @@ const healthCheckUrl = `http://127.0.0.1:${
27
}`; // TODO: if there is a backend, check that too, even if it's a docker-compose situation
28
29
export async function setup(project: TestProject) {
30
+ project.provide("baseUrl", BASE_URL);
31
if (isE2E) {
32
if (isBuiltBackendE2E) {
33
console.log(`Starting app at ${executablePath} ...`);
@@ -45,7 +46,6 @@ export async function setup(project: TestProject) {
45
46
});
47
}
48
browser = await chromium.launch(); // headless by default
- project.provide("baseUrl", BASE_URL);
49
// Wait for /api/healthcheck to become available
50
const maxAttempts = 10;
51
let attempts = 0;
0 commit comments