mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
762a0a850e
Doing this BEFORE the merge prevents a lot of merge conflicts. Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
describe('The status bar text length info', () => {
|
|
const warningTestContent = '0123456789'.repeat(10)
|
|
const dangerTestContent = '0123456789'.repeat(20)
|
|
const tooMuchTestContent = `${dangerTestContent}a`
|
|
|
|
beforeEach(() => {
|
|
cy.visitTestNote()
|
|
})
|
|
|
|
it('shows the maximal length of the document as number of available characters in the tooltip', () => {
|
|
cy.getByCypressId('remainingCharacters').attribute('title').should('contain', ' 200 ')
|
|
})
|
|
|
|
it('color is set to "warning" on <= 100 characters remaining', () => {
|
|
cy.setCodemirrorContent(warningTestContent)
|
|
cy.getByCypressId('remainingCharacters').should('have.class', 'text-warning')
|
|
})
|
|
|
|
it('color is set to danger on <= 0 characters remaining', () => {
|
|
cy.setCodemirrorContent(dangerTestContent)
|
|
cy.getByCypressId('remainingCharacters').should('have.class', 'text-danger')
|
|
})
|
|
|
|
it('opens a modal', () => {
|
|
cy.setCodemirrorContent(tooMuchTestContent)
|
|
cy.getByCypressId('limitReachedModal').should('be.visible')
|
|
})
|
|
})
|