wagtail/client/tests/integration/groups.test.js

16 wiersze
400 B
JavaScript
Czysty Zwykły widok Historia

2021-11-12 16:27:10 +00:00
describe('Groups', () => {
beforeAll(async () => {
await page.goto(`${TEST_ORIGIN}/admin/groups/2/`);
2021-11-12 16:27:10 +00:00
}, 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'
});
});
});