mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
13 lines
397 B
TypeScript
13 lines
397 B
TypeScript
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('.gitako-side-bar .gitako-side-bar-body-wrapper')
|
|
})
|
|
|
|
it('should render file list', async () => {
|
|
await expectToFind('.gitako-side-bar .files .node-item')
|
|
})
|
|
})
|