Skip to content

Commit

Permalink
skip login test and add edd login test
Browse files Browse the repository at this point in the history
  • Loading branch information
jackiequach committed Dec 18, 2024
1 parent 2b837dc commit e98041a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions playwright/features/edd.feature
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,11 @@ Feature: EDD Request Process
Given I go to the "home" page
When I fill in the "homepage search box" with "Africa"
And I click the "search button"
And I click the "requestable checkbox"
Then the "first login for options button" should be displayed
And I click the "requestable checkbox"
And I click the "first login for options button"
And I fill in the "username field" with "catalog username"
And I fill in the "password field" with "catalog password"
And I click the "login button"
And the "first request button" should be displayed
And I click the "first request button"
Then the "delivery location heading" should be displayed
2 changes: 1 addition & 1 deletion playwright/integration/auth.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test.beforeEach(async ({ context }) => {
test.afterEach(() => server.resetHandlers());
test.afterAll(() => server.close());

test.describe("Cookie authentication", () => {
test.skip("Cookie authentication", () => {
test("redirects to NYPL log in page with no cookie", async ({ page }) => {
await page.goto(`${LIMITED_ACCESS_EDITION_PATH}`);
await page.getByTestId(LOGIN_TO_READ_TEST_ID).click();
Expand Down

0 comments on commit e98041a

Please sign in to comment.