summaryrefslogtreecommitdiff
path: root/packages/astro/e2e/nested-in-solid.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/e2e/nested-in-solid.test.js')
-rw-r--r--packages/astro/e2e/nested-in-solid.test.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/astro/e2e/nested-in-solid.test.js b/packages/astro/e2e/nested-in-solid.test.js
index 3e8acddd3..0fab17468 100644
--- a/packages/astro/e2e/nested-in-solid.test.js
+++ b/packages/astro/e2e/nested-in-solid.test.js
@@ -15,7 +15,7 @@ test.afterAll(async () => {
test.describe('Nested Frameworks in Solid', () => {
test('React counter', async ({ astro, page }) => {
- await page.goto('/');
+ await page.goto(astro.resolveUrl('/'));
const counter = page.locator('#react-counter');
await expect(counter, 'component is visible').toBeVisible();
@@ -32,7 +32,7 @@ test.describe('Nested Frameworks in Solid', () => {
});
test('Preact counter', async ({ astro, page }) => {
- await page.goto('/');
+ await page.goto(astro.resolveUrl('/'));
const counter = page.locator('#preact-counter');
await expect(counter, 'component is visible').toBeVisible();
@@ -49,7 +49,7 @@ test.describe('Nested Frameworks in Solid', () => {
});
test('Solid counter', async ({ astro, page }) => {
- await page.goto('/');
+ await page.goto(astro.resolveUrl('/'));
const counter = page.locator('#solid-counter');
await expect(counter, 'component is visible').toBeVisible();
@@ -66,7 +66,7 @@ test.describe('Nested Frameworks in Solid', () => {
});
test('Vue counter', async ({ astro, page }) => {
- await page.goto('/');
+ await page.goto(astro.resolveUrl('/'));
const counter = page.locator('#vue-counter');
await expect(counter, 'component is visible').toBeVisible();
@@ -83,7 +83,7 @@ test.describe('Nested Frameworks in Solid', () => {
});
test('Svelte counter', async ({ astro, page }) => {
- await page.goto('/');
+ await page.goto(astro.resolveUrl('/'));
const counter = page.locator('#svelte-counter');
await expect(counter, 'component is visible').toBeVisible();