mirror of
https://github.com/codex-team/editor.js
synced 2026-03-15 15:15:47 +01:00
* deps: upgrade cypress and related libraries * chore: automate migrate cypress config, rename spec files * fix: custom commands types * chore: upgrade CHANGELOG.md * ci: upgrade cypress action to support new config file format * ci: remove container from firefox job, upgrade checkout action
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
// eslint-disable-next-line spaced-comment, @typescript-eslint/triple-slash-reference
|
|
/// <reference path="../support/index.d.ts" />
|
|
|
|
describe('Editor basic initialization', () => {
|
|
describe('Zero-config initialization', () => {
|
|
/**
|
|
* In this test suite we use zero (omitted) configuration
|
|
*/
|
|
const editorConfig = {};
|
|
|
|
beforeEach(function () {
|
|
cy.createEditor(editorConfig).as('editorInstance');
|
|
});
|
|
|
|
afterEach(function () {
|
|
if (this.editorInstance) {
|
|
this.editorInstance.destroy();
|
|
}
|
|
});
|
|
|
|
it('should create a visible UI', () => {
|
|
/**
|
|
* Assert if created instance is visible or not.
|
|
*/
|
|
cy.get('[data-cy=editorjs]')
|
|
.get('div.codex-editor')
|
|
.should('be.visible');
|
|
});
|
|
});
|
|
|
|
describe('Configuration', () => {
|
|
describe('readOnly', () => {
|
|
beforeEach(() => {
|
|
if (this && this.editorInstance) {
|
|
this.editorInstance.destroy();
|
|
}
|
|
});
|
|
|
|
it('should create editor without editing ability when true passed', () => {
|
|
cy.createEditor({
|
|
readOnly: true,
|
|
}).as('editorInstance');
|
|
|
|
cy.get('[data-cy=editorjs]')
|
|
.get('div.codex-editor')
|
|
.get('div.ce-paragraph')
|
|
.invoke('attr', 'contenteditable')
|
|
.should('eq', 'false');
|
|
});
|
|
});
|
|
});
|
|
});
|