Skip to content

Commit

Permalink
Try to fix the commented out subtest
Browse files Browse the repository at this point in the history
  • Loading branch information
Tishasoumya-02 authored Jan 15, 2025
1 parent a968d1d commit bab1673
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions cypress/tests/block.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ context('Block Acceptance Tests', () => {
cy.get('h2:contains(Heading h2)').should('be.visible');
});

// it('As editor I can add a Heading H3 block ', () => {
// cy.visit('/document/edit');
// cy.addNewBlock('heading');
// cy.get('#field-tag > .react-select__control').click();
// cy.get('#react-select-38-option-1').click();
// cy.get('.editable').click().type('Heading h3');
// cy.get('#toolbar-save').click();
// cy.visit('/document');
// cy.get('h3:contains(Heading h3)').should('be.visible');
// });
it('As editor I can add a Heading H3 block ', () => {
cy.visit('/document/edit');
cy.addNewBlock('heading');
// cy.get('#field-tag > .react-select__control').click();
// cy.get('#react-select-38-option-1').click();
// cy.get('.editable').click().type('Heading h3');
// cy.get('#toolbar-save').click();
// cy.visit('/document');
// cy.get('h3:contains(Heading h3)').should('be.visible');
});

it('As editor I can add a Heading block with special characters', () => {
cy.visit('/document/edit');
Expand Down

0 comments on commit bab1673

Please sign in to comment.