mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
9 lines
265 B
TypeScript
9 lines
265 B
TypeScript
import { expectToFind } from '../utils'
|
|
|
|
describe(`in Gitako project page`, () => {
|
|
beforeAll(() => page.goto('https://github.com/EnixCoda/Gitako'))
|
|
|
|
it('should render Gitako', async () => {
|
|
expectToFind('.gitako-side-bar .gitako-position-wrapper')
|
|
})
|
|
})
|