Skip to content

Commit b75e007

Browse files
committed
fix official site tests
1 parent d7bf3e6 commit b75e007

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/end-to-end/official-site.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ test("Open documentation", async ({ page }) => {
1010

1111
// open the submenu
1212
await page.getByText("Documentation", { exact: true }).first().click();
13-
await page.getByText("All Components").click();
1413
const components = ["form", "map", "chart", "button"];
1514
for (const component of components) {
1615
await expect(
@@ -46,7 +45,7 @@ test("form example", async ({ page }) => {
4645
});
4746

4847
test("File upload", async ({ page }) => {
49-
await page.goto(BASE);
48+
await page.goto(`${BASE}/your-first-sql-website`);
5049
await page.getByRole("button", { name: "Examples", exact: true }).click();
5150
await page.getByText("File uploads").click();
5251
const my_svg = '<svg><text y="20">Hello World</text></svg>';

0 commit comments

Comments
 (0)