Skip to content

Commit

Permalink
fix: Removed unused variables from login.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
praveen5959 committed Nov 19, 2024
1 parent 3b98fc1 commit 8d9611b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/login.spec.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import { test, expect, BrowserContext, Page } from '@playwright/test';
import { test, expect, BrowserContext } from '@playwright/test';

const TEST_URL = 'http://localhost:3001';

test.describe('Login Page', () => {
let context: BrowserContext;
let page: Page;

test.beforeEach(async ({ browser }) => {
context = await browser.newContext();
page = await context.newPage();
await context.newPage();
});

test.afterEach(async () => {
Expand Down

0 comments on commit 8d9611b

Please sign in to comment.