Gitako/__tests__/cases/parallel/homepage.not-render.ts
2021-08-23 11:13:26 +08:00

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