| 1 |
import { expect, test } from '../fixtures'; |
| 2 |
|
| 3 |
test.beforeEach(async ({ requestUtils }) => { |
| 4 |
await requestUtils.login(); |
| 5 |
}); |
| 6 |
|
| 7 |
test('Assist dashboard is reachable when Launch is disabled', async ({ |
| 8 |
admin, |
| 9 |
page, |
| 10 |
}) => { |
| 11 |
await admin.visitAdminPage('admin.php', 'page=extendify-assist'); |
| 12 |
await expect(page.getByTestId('assist-landing')).toBeVisible({ |
| 13 |
timeout: 15_000, |
| 14 |
}); |
| 15 |
}); |
| 16 |
|