2021-11-12 16:27:10 +00:00
|
|
|
describe('Groups', () => {
|
|
|
|
beforeAll(async () => {
|
2021-12-12 00:07:30 +00:00
|
|
|
await page.goto(`${TEST_ORIGIN}/admin/groups/2/`);
|
2021-11-12 16:27:10 +00:00
|
|
|
}, 10000);
|
|
|
|
|
|
|
|
it('has the right heading', async () => {
|
2022-08-26 20:44:32 +00:00
|
|
|
expect(await page.title()).toContain('Editing Editors - Wagtail');
|
2021-11-12 16:27:10 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('axe', async () => {
|
|
|
|
await expect(page).toPassAxeTests({
|
2022-02-04 11:57:55 +00:00
|
|
|
exclude: '.skiplink, .sidebar__collapse-toggle, #wagtail-sidebar',
|
2021-11-12 16:27:10 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|