Gitako/__tests__/cases/homepage.not-render.ts
2024-07-07 13:42:58 +08:00

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')
})
})