Skip to content

Commit

Permalink
CI: revert risky consoles
Browse files Browse the repository at this point in the history
  • Loading branch information
algoORgoal committed May 10, 2024
1 parent 7be6569 commit 8c7860a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ import path from "path";
require("dotenv").config({ path: path.resolve(__dirname, ".", ".env.local") });

const BASE_URL = process.env.BASE_URL;
console.log("check env variables");
console.log(process.env.BASE_URL);
console.log(process.env.API_URL);

/**
* See https://playwright.dev/docs/test-configuration.
Expand Down
3 changes: 0 additions & 3 deletions tests/auth.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ 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 8c7860a

Please sign in to comment.