Gitako/__tests__/cases/parallel/pull-request-page.gitako.ts
2023-08-10 23:50:59 +08:00

14 lines
413 B
TypeScript

import { selectors } from '../../selectors'
import { expectToFind } from '../../utils'
describe(`in Gitako project page`, () => {
beforeAll(() => page.goto('https://github.com/EnixCoda/Gitako/pull/71'))
it('should render Gitako', async () => {
await expectToFind(selectors.gitako.bodyWrapper)
})
it('should render file list', async () => {
await expectToFind(selectors.gitako.fileItem)
})
})