mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
15 lines
460 B
TypeScript
15 lines
460 B
TypeScript
import { selectors } from '../../selectors'
|
|
import { testURL } from '../../testURL'
|
|
import { expectToFind } from '../../utils'
|
|
|
|
describe(`in Gitako project page`, () => {
|
|
beforeAll(() => page.goto(testURL`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)
|
|
})
|
|
})
|