mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-05 07:19:32 +00:00
16 lines
527 B
TypeScript
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()
|
|
})
|