Gitako/__tests__/cases/homepage.not-render.ts
2021-05-24 22:16:16 +08:00

9 lines
266 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')
})
})