Skip to content

Commit

Permalink
debug: check naviation on authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
algoORgoal committed May 10, 2024
1 parent 7e41965 commit 7be6569
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/auth.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ setup("authenticate", async ({ page }) => {
.getByPlaceholder("비밀번호를 입력해주세요")
.fill(process.env.VERIFIED_ACCOUNT_PASSWORD!);
await page.getByRole("button", { name: "로그인" }).click();
console.log(process.env.VERIFIED_ACCOUNT_ID!);
console.log(process.env.VERIFIED_ACCOUNT_PASSWORD!);
console.log(page.url());
await page.waitForURL("/");
await expect(page.getByText("운영중인 부스 없음")).not.toBeVisible();

Expand Down

0 comments on commit 7be6569

Please sign in to comment.