add node demos

This commit is contained in:
Philipp Kühn
2021-08-25 18:15:10 +02:00
parent 502b533f60
commit 7dd4e38af5
51 changed files with 2925 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
context('/demos/Nodes/Table', () => {
before(() => {
cy.visit('/demos/Nodes/Table')
})
beforeEach(() => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.commands.clearContent()
})
})
it('creates a table (1x1)', () => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.commands.insertTable({ cols: 1, rows: 1, withHeaderRow: false })
cy.get('.ProseMirror').find('td').its('length').should('eq', 1)
cy.get('.ProseMirror').find('tr').its('length').should('eq', 1)
})
})
it('creates a table (3x1)', () => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.commands.insertTable({ cols: 3, rows: 1, withHeaderRow: false })
cy.get('.ProseMirror').find('td').its('length').should('eq', 3)
cy.get('.ProseMirror').find('tr').its('length').should('eq', 1)
})
})
it('creates a table (1x3)', () => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.commands.insertTable({ cols: 1, rows: 3, withHeaderRow: false })
cy.get('.ProseMirror').find('td').its('length').should('eq', 3)
cy.get('.ProseMirror').find('tr').its('length').should('eq', 3)
})
})
it('creates a table with header row (1x3)', () => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.commands.insertTable({ cols: 1, rows: 3, withHeaderRow: true })
cy.get('.ProseMirror').find('th').its('length').should('eq', 1)
cy.get('.ProseMirror').find('td').its('length').should('eq', 2)
cy.get('.ProseMirror').find('tr').its('length').should('eq', 3)
})
})
it('creates a table with correct defaults (3x3, th)', () => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.commands.insertTable()
cy.get('.ProseMirror').find('th').its('length').should('eq', 3)
cy.get('.ProseMirror').find('td').its('length').should('eq', 6)
cy.get('.ProseMirror').find('tr').its('length').should('eq', 3)
})
})
it('generates correct markup for a table (1x1)', () => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.commands.insertTable({ cols: 1, rows: 1, withHeaderRow: false })
const html = editor.getHTML()
expect(html).to.equal('<table><tbody><tr><td colspan="1" rowspan="1"><p></p></td></tr></tbody></table>')
})
})
it('generates correct markup for a table (1x1, th)', () => {
cy.get('.ProseMirror').then(([{ editor }]) => {
editor.commands.insertTable({ cols: 1, rows: 1, withHeaderRow: true })
const html = editor.getHTML()
expect(html).to.equal('<table><tbody><tr><th colspan="1" rowspan="1"><p></p></th></tr></tbody></table>')
})
})
})