mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 17:36:49 +01:00
af942a27e4
- Automated reformatting - Manually change code where Prettier reformatting causes issues - Revert "Disable Prettier formatting in CI for now"
19 lines
468 B
JavaScript
19 lines
468 B
JavaScript
describe('Listing', () => {
|
|
beforeAll(async () => {
|
|
await page.goto(`${TEST_ORIGIN}/admin/pages/2/`);
|
|
});
|
|
|
|
it('has the right heading', async () => {
|
|
expect(await page.title()).toContain(
|
|
'Wagtail - Exploring Welcome to your new Wagtail site!',
|
|
);
|
|
});
|
|
|
|
it('axe', async () => {
|
|
await expect(page).toPassAxeTests({
|
|
exclude:
|
|
'.skiplink, .sidebar__collapse-toggle, #wagtail-sidebar, a[href$="dummy-button"]',
|
|
});
|
|
});
|
|
});
|