This commit is contained in:
2026-01-04 01:51:53 +01:00
parent b8eb8fb005
commit 729d95cd73
2 changed files with 8 additions and 13 deletions

View File

@@ -88,8 +88,6 @@ test.describe('Website Pages - TypeORM Integration', () => {
{
const auth = await WebsiteAuthManager.createAuthContext(browser, request, 'auth');
await auth.page.goto(`${WEBSITE_BASE_URL}${path}`);
console.log(`[TEST] Final URL after goto: ${auth.page.url()}`);
console.log(`[TEST] Expected to include 'login', actual includes: ${auth.page.url().includes('login')}`);
expect(auth.page.url().includes('login')).toBeTruthy();
await auth.context.close();
}