Skip to content

Commit

Permalink
run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LexSwed committed Jun 29, 2024
1 parent e729d65 commit 02f8550
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/acceptance-tests/tests/user-1-new-user.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from "../fixtures/users";

test.describe("User 1 is a new user", () => {
test.fixme("can create pets", async ({ userOnePage: page }) => {
test("can create pets", async ({ userOnePage: page }) => {
page.goto("/app");
console.log("Has initial pet creation form expanded");
await expect(page.getByLabel("Add your pet")).toBeVisible();
Expand All @@ -26,7 +26,7 @@ test.describe("User 1 is a new user", () => {
await expect(page.getByRole("button", { name: "Burth date" })).toBeVisible();
});

test.fixme("can create family invites", async ({ userOnePage: page }) => {
test("can create family invites", async ({ userOnePage: page }) => {
page.goto("/app");
await page.waitForEvent("load");

Expand Down

0 comments on commit 02f8550

Please sign in to comment.