mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
040e11924f
* Update dependency cypress to v10 * Migrate cypress files Signed-off-by: Renovate Bot <bot@renovateapp.com> Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-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')
|
|
})
|
|
})
|