| 1234567 |
- import { test, expect } from './fixtures/auth';
- test('fixture smoke: authedPage reaches dashboard without re-login', async ({ authedPage }) => {
- await authedPage.goto('/#/dashboard/home', { waitUntil: 'domcontentloaded' });
- await authedPage.waitForLoadState('networkidle', { timeout: 30_000 }).catch(() => {});
- expect(authedPage.url()).not.toMatch(/\/#\/login/);
- });
|