0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-28 08:48:04 +01:00
wagtail/client/tests/integration/users.test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
381 B
JavaScript
Raw Normal View History

jest.setTimeout(30000);
2021-11-12 17:27:10 +01:00
describe('Users', () => {
beforeAll(async () => {
await page.goto(`${TEST_ORIGIN}/admin/users/`);
2021-11-12 17:27:10 +01:00
});
it('axe', async () => {
const toggle = await page.$('[aria-label="Select all"]');
await toggle.click();
await expect(page).toPassAxeTests({
exclude: '.skiplink, .sidebar__collapse-toggle, #wagtail-sidebar',
});
});
});