2022-01-26 20:25:11 +01:00
|
|
|
context('Edit Topic', () => {
|
|
|
|
// TODO: review why click({force: true}) is needed in these tests
|
|
|
|
// also, why is the element outside the viewport in screenshots?
|
|
|
|
beforeEach(() => {
|
|
|
|
cy.visit('/editor.html');
|
|
|
|
cy.reload();
|
|
|
|
cy.get('[test-id=1]').click();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Change Main Topic Text', () => {
|
|
|
|
cy.get('body').type('New Title Main Topic{enter}');
|
|
|
|
cy.get('[test-id=1] > text > tspan').should('have.text', 'New Title Main Topic');
|
|
|
|
cy.matchImageSnapshot('changeMainTopicText');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Change Font Size', () => {
|
|
|
|
cy.get('#fontSizeTip').click();
|
2022-02-01 13:45:10 +01:00
|
|
|
cy.get('.popover #small').click({ force: true });
|
2022-01-26 20:25:11 +01:00
|
|
|
|
|
|
|
cy.get('[test-id=1] > text').invoke('attr', 'font-size').should('eq', '8.0625');
|
|
|
|
cy.matchImageSnapshot('changeFontSizeSmall');
|
|
|
|
|
|
|
|
cy.get('#fontSizeTip').click();
|
|
|
|
cy.get('.popover #normal').click({ force: true });
|
|
|
|
|
|
|
|
cy.get('[test-id=1] > text').invoke('attr', 'font-size').should('eq', '10.75');
|
|
|
|
cy.matchImageSnapshot('changeFontSizeNormal');
|
|
|
|
|
|
|
|
cy.get('#fontSizeTip').click();
|
|
|
|
cy.get('.popover #large').click({ force: true });
|
|
|
|
|
|
|
|
cy.get('[test-id=1] > text').invoke('attr', 'font-size').should('eq', '13.4375');
|
|
|
|
cy.matchImageSnapshot('changeFontSizeLarge');
|
|
|
|
|
|
|
|
cy.get('#fontSizeTip').click();
|
|
|
|
cy.get('.popover #huge').click({ force: true });
|
|
|
|
|
|
|
|
cy.get('[test-id=1] > text').invoke('attr', 'font-size').should('eq', '20.15625');
|
|
|
|
cy.matchImageSnapshot('changeFontSizeHuge');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Change Font type', () => {
|
|
|
|
cy.get('#fontFamilyTip').click();
|
|
|
|
cy.get('[model="Times"]').click({ force: true });
|
|
|
|
|
|
|
|
cy.get('[test-id=1] > text').invoke('attr', 'font-family').should('eq', 'Times');
|
|
|
|
|
|
|
|
cy.matchImageSnapshot('changeFontType');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Change Font Italic', () => {
|
|
|
|
cy.get('#fontItalicTip').click();
|
|
|
|
|
|
|
|
cy.get('[test-id=1] > text').invoke('attr', 'font-style').should('eq', 'italic');
|
|
|
|
|
|
|
|
cy.matchImageSnapshot('changeFontItalic');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Change Font color', () => {
|
|
|
|
cy.get('#fontColorTip').click();
|
|
|
|
cy.get('[title="RGB (153, 0, 255)"]').click({ force: true });
|
|
|
|
|
|
|
|
cy.get('[test-id=1] > text').invoke('attr', 'fill').should('eq', 'rgb(153, 0, 255)');
|
|
|
|
|
|
|
|
cy.matchImageSnapshot('changeFontColor');
|
|
|
|
});
|
|
|
|
});
|