10 lines
201 B
JavaScript
10 lines
201 B
JavaScript
context('/examples/focus', () => {
|
|
before(() => {
|
|
cy.visit('/examples/focus')
|
|
})
|
|
|
|
it('should have class', () => {
|
|
cy.get('.ProseMirror p:first').should('have.class', 'has-focus')
|
|
})
|
|
})
|