0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-22 11:07:57 +01:00
wagtail/client/tests/integration/groups.test.js
Thibaud Colas af942a27e4
Reformat codebase with Prettier (#7912)
- Automated reformatting
- Manually change code where Prettier reformatting causes issues
- Revert "Disable Prettier formatting in CI for now"
2022-02-04 11:57:55 +00:00

16 lines
401 B
JavaScript

describe('Groups', () => {
beforeAll(async () => {
await page.goto(`${TEST_ORIGIN}/admin/groups/2/`);
}, 10000);
it('has the right heading', async () => {
expect(await page.title()).toContain('Wagtail - Editing Editors');
});
it('axe', async () => {
await expect(page).toPassAxeTests({
exclude: '.skiplink, .sidebar__collapse-toggle, #wagtail-sidebar',
});
});
});