mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-02-22 08:02:25 +01:00
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
describe('readonly editor', () => {
|
|
it('should not be editable', () => {
|
|
cy.visit('examples/read-only')
|
|
.get('[data-slate-editor="true"]')
|
|
.should('not.have.attr', 'contentEditable', 'true')
|
|
.should('not.have.attr', 'role', 'textbox')
|
|
.click()
|
|
.should('not.be.focused')
|
|
})
|
|
})
|