kopia lustrzana https://github.com/wagtail/wagtail
16 wiersze
407 B
JavaScript
16 wiersze
407 B
JavaScript
![]() |
describe('Groups', () => {
|
||
|
beforeAll(async () => {
|
||
|
await page.goto('http://localhost:8000/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'
|
||
|
});
|
||
|
});
|
||
|
});
|