platform/tests/sanity/tests/tracker/loading.spec.ts
JasminMus aca8b9e2e5
Refactor tracker tests (#5494)
Signed-off-by: Jasmin <jasmin@hardcoreeng.com>
2024-05-03 16:40:29 +07:00

16 lines
527 B
TypeScript

import { test } from '@playwright/test'
import { IssuesPage } from '../model/tracker/issues-page'
import { PlatformSetting, PlatformURI } from '../utils'
test.use({
storageState: PlatformSetting
})
test('check-status-loading', async ({ page }) => {
await (
await page.goto(`${PlatformURI}/workbench/sanity-ws/tracker/tracker%3Aproject%3ADefaultProject/issues`)
)?.finished()
const issuesPage = new IssuesPage(page)
await issuesPage.clickModelSelectorAll()
await issuesPage.verifyCategoryHeadersVisibility()
})