Skip to content

Commit 048462f

Browse files
committed
fix: remove unused variable in authentication test
- Remove unused _authButtons variable that was causing TypeScript error in CI - Simplify test to just verify page loads without errors
1 parent 8ee5c91 commit 048462f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/e2e/authentication.spec.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ test.describe('Authentication Flow', () => {
88
await page.waitForTimeout(2000);
99

1010
// Look for auth buttons - they should be present but might not be visible due to CSP issues
11-
const _authButtons = page.locator(
12-
'button[title*="Sign in"], button[title*="Google"], button[title*="GitHub"]'
13-
);
14-
1511
// If auth buttons are not visible due to missing env vars, that's expected
1612
// We'll just verify the page loads without errors
1713
await expect(page.getByRole('heading', { name: 'Comprehendo' })).toBeVisible();

0 commit comments

Comments
 (0)