change markdown shortcut for striked text to two tildes

This commit is contained in:
Hans Pagel
2020-10-02 15:05:26 +02:00
parent f96dca37d6
commit eeec5b6871
3 changed files with 4 additions and 4 deletions

View File

@@ -51,7 +51,7 @@ context('/api/extensions/strike', () => {
it('should make a striked text from the markdown shortcut', () => {
cy.get('.ProseMirror')
.type('~Strike~')
.type('~~Strike~~')
.find('s')
.should('contain', 'Strike')
})