Skip to content

Commit

Permalink
fix official site tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lovasoa committed Jan 11, 2025
1 parent d7bf3e6 commit b75e007
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/end-to-end/official-site.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ test("Open documentation", async ({ page }) => {

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

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

0 comments on commit b75e007

Please sign in to comment.