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