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