Skip to content

Commit 22978ce

Browse files
committed
CCM-8620: linting
1 parent 8f3a5f3 commit 22978ce

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

tests/test-team/template-mgmt-component-tests/template-mgmt-start-page.component.spec.ts

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
import { test, expect } from '@playwright/test';
22
import { TemplateMgmtStartPage } from '../pages/template-mgmt-start-page';
3-
import { assertFooterLinks, assertGoBackLinkNotPresent, assertNotifyBannerLink, assertSignOutLink, assertSkipToMainContent } from './template-mgmt-common.steps';
3+
import {
4+
assertFooterLinks,
5+
assertGoBackLinkNotPresent,
6+
assertNotifyBannerLink,
7+
assertSignOutLink,
8+
assertSkipToMainContent,
9+
} from './template-mgmt-common.steps';
410

511
test.describe('Start Page', () => {
612
test('should land on start page when navigating to "/templates/create-and-submit-templates"', async ({
@@ -20,17 +26,17 @@ test.describe('Start Page', () => {
2026
});
2127

2228
test('common page tests', async ({ page, baseURL }) => {
23-
const props = {
24-
page: new TemplateMgmtStartPage(page),
25-
baseURL,
26-
};
27-
28-
await assertSkipToMainContent(props);
29-
await assertNotifyBannerLink(props);
30-
await assertSignOutLink(props);
31-
await assertFooterLinks(props);
32-
await assertGoBackLinkNotPresent(props);
33-
});
29+
const props = {
30+
page: new TemplateMgmtStartPage(page),
31+
baseURL,
32+
};
33+
34+
await assertSkipToMainContent(props);
35+
await assertNotifyBannerLink(props);
36+
await assertSignOutLink(props);
37+
await assertFooterLinks(props);
38+
await assertGoBackLinkNotPresent(props);
39+
});
3440

3541
test('should display correct list of template types', async ({ page }) => {
3642
const startPage = new TemplateMgmtStartPage(page);

0 commit comments

Comments
 (0)