@revoloo/cypress6
Version:
Cypress.io end to end testing tool
37 lines (29 loc) • 1.05 kB
text/typescript
describe('src/dom/jquery', () => {
context('.isJquery', () => {
it('does not get confused when window contains jquery function', () => {
window.jquery = () => {}
expect(Cypress.dom.isJquery(window)).to.be.false
})
it('is true for actual jquery instances', () => {
expect(Cypress.dom.isJquery(Cypress.$(':first'))).to.be.true
})
// https://github.com/cypress-io/cypress/issues/14278
it('does not return undefined', () => {
cy.visit('fixtures/dom.html')
cy.get('#dom').then(($el) => {
expect(Cypress.dom.isJquery($el[0])).to.eql(false)
// @ts-ignore
expect(Cypress.dom.isJquery()).to.eql(false)
})
})
})
// https://github.com/cypress-io/cypress/issues/14279
it('empty jQuery object is shown properly in "DOM required" error message', (done) => {
cy.on('fail', (err) => {
expect(err.message).to.include('jQuery{0}')
done()
})
cy.visit('fixtures/dom.html')
cy.noop(cy.$$('#should-not-exist')).scrollTo('250px', '250px')
})
})