mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
d44c0c6a7e
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
42 lines
1.5 KiB
TypeScript
42 lines
1.5 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
describe('Test word count with', () => {
|
|
beforeEach(() => {
|
|
cy.visitTestNote()
|
|
})
|
|
|
|
it('empty note', () => {
|
|
cy.setCodemirrorContent('')
|
|
cy.getByCypressId('sidebar-btn-document-info').click()
|
|
cy.getByCypressId('document-info-modal').should('be.visible')
|
|
cy.getByCypressId('document-info-word-count').contains('0')
|
|
})
|
|
|
|
it('simple words', () => {
|
|
cy.setCodemirrorContent('five words should be enough')
|
|
cy.getMarkdownBody().contains('five words should be enough')
|
|
cy.getByCypressId('sidebar-btn-document-info').click()
|
|
cy.getByCypressId('document-info-modal').should('be.visible')
|
|
cy.getByCypressId('document-info-word-count').contains('5')
|
|
})
|
|
|
|
it('excluded codeblocks', () => {
|
|
cy.setCodemirrorContent('```\nthis is should be ignored\n```\n\ntwo `words`')
|
|
cy.getMarkdownBody().contains('two words')
|
|
cy.getByCypressId('sidebar-btn-document-info').click()
|
|
cy.getByCypressId('document-info-modal').should('be.visible')
|
|
cy.getByCypressId('document-info-word-count').contains('2')
|
|
})
|
|
|
|
it('excluded images', () => {
|
|
cy.setCodemirrorContent('![ignored alt text](https://dummyimage.com/48) not ignored text')
|
|
cy.getMarkdownBody().contains('not ignored text')
|
|
cy.getByCypressId('sidebar-btn-document-info').click()
|
|
cy.getByCypressId('document-info-modal').should('be.visible')
|
|
cy.getByCypressId('document-info-word-count').contains('3')
|
|
})
|
|
})
|