Skip to content

Commit

Permalink
Fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bisht-richa committed Jul 31, 2023
1 parent cf20d42 commit 383bc17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cypress/e2e/tests/accessibility/login.spec.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { LoginPagePo } from '@/cypress/e2e/po/pages/login-page.po';

describe('Local authentication', { tags: ['@adminUser', '@standardUser'] }, () => {
it('Log in with valid credentials', () => {
describe('Login page a11y testing', { tags: ['@adminUser', '@standardUser'] }, () => {
it('wcag21aa test', (wait = 600) => {
LoginPagePo.goTo();
cy.injectAxe();
cy.wait(600);
cy.wait(wait);
cy.checkPageAccessibility();
});
});

0 comments on commit 383bc17

Please sign in to comment.