mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-22 11:07:57 +01:00
18 lines
420 B
JavaScript
18 lines
420 B
JavaScript
jest.setTimeout(30000);
|
|
|
|
describe('Groups', () => {
|
|
beforeAll(async () => {
|
|
await page.goto(`${TEST_ORIGIN}/admin/groups/2/`);
|
|
});
|
|
|
|
it('has the right heading', async () => {
|
|
expect(await page.title()).toContain('Editing: Editors - Wagtail');
|
|
});
|
|
|
|
it('axe', async () => {
|
|
await expect(page).toPassAxeTests({
|
|
exclude: '.skiplink, .sidebar__collapse-toggle, #wagtail-sidebar',
|
|
});
|
|
});
|
|
});
|