Gitako/__tests__/cases/parallel/homepage.not-render.ts

10 lines
316 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')
})
})