Gitako/__tests__/cases/homepage.not-render.ts
2020-10-28 16:25:45 +08:00

9 lines
261 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-position-wrapper')
})
})