Skip to content

Commit

Permalink
CI: fix typos in playwright workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
algoORgoal committed May 10, 2024
1 parent 1e26cc2 commit 8de07d2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
BASE_URL: ${{ vars.BASE_URL}}
# build time environment secrets
VERIFIED_ACCOUNT_ID: ${{ secrets.VERIFIED_ACCOUNT_ID}}
VERIFIED_ACCOUNT_PASSWORD: ${{ secrets.VERIFIED_ACCOUNT_ID}}
VERIFIED_ACCOUNT_PASSWORD: ${{ secrets.VERIFIED_ACCOUNT_PASSWORD}}
# run time environment variables
NEXT_PUBLIC_API_URL: ${{ vars.NEXT_PUBLIC_API_URL }}
NEXT_PUBLIC_BASE_URL: ${{ vars.NEXT_PUBLIC_BASE_URL}}
Expand Down
2 changes: 0 additions & 2 deletions tests/auth.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ setup("authenticate", async ({ page }) => {
await page
.getByPlaceholder("비밀번호를 입력해주세요")
.fill(process.env.VERIFIED_ACCOUNT_PASSWORD!);
console.log(process.env.VERIFIED_ACCOUNT_ID);
console.log(process.env.VERIFIED_ACCOUNT_PASSWORD);
await page.getByRole("button", { name: "로그인" }).click();
await page.waitForURL("/");
await expect(page.getByText("운영중인 부스 없음")).not.toBeVisible();
Expand Down

0 comments on commit 8de07d2

Please sign in to comment.