Skip to content

Commit

Permalink
feat: update login test
Browse files Browse the repository at this point in the history
  • Loading branch information
maathzzz committed Dec 30, 2024
1 parent fb125b0 commit d44f967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/login.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { test, expect } from '@playwright/test';

test('Login', async ({ page }) => {
await page.goto('http://localhost:3000/'); // use URL domain from dotenv
await page.goto('https://todo-app-e2e-tests.pages.dev/');
await page.getByPlaceholder('Email').click();
await page.getByPlaceholder('Email').fill('user@example.com');
await page.getByPlaceholder('Password').click();
Expand Down

0 comments on commit d44f967

Please sign in to comment.