mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-26 19:53:59 -05:00
ca5dae3f82
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
28 lines
777 B
TypeScript
28 lines
777 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
describe('emojis', () => {
|
|
const HEDGEHOG_UNICODE_CHARACTER = '\n🦔\n'
|
|
|
|
beforeEach(() => {
|
|
cy.visitTestNote()
|
|
})
|
|
|
|
it('renders an emoji shortcode', () => {
|
|
cy.setCodemirrorContent(':hedgehog:')
|
|
cy.getMarkdownBody().should('have.text', HEDGEHOG_UNICODE_CHARACTER)
|
|
})
|
|
|
|
it('renders an emoji unicode character', () => {
|
|
cy.setCodemirrorContent(HEDGEHOG_UNICODE_CHARACTER)
|
|
cy.getMarkdownBody().should('have.text', HEDGEHOG_UNICODE_CHARACTER)
|
|
})
|
|
|
|
it('renders an fork awesome icon', () => {
|
|
cy.setCodemirrorContent(':fa-matrix-org:')
|
|
cy.getMarkdownBody().find('i.fa.fa-matrix-org').should('be.visible')
|
|
})
|
|
})
|