mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-26 05:01:30 +00:00
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
|
/*
|
||
|
* SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
|
||
|
*
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
describe('yaml-metadata: tags', () => {
|
||
|
beforeEach(() => {
|
||
|
cy.visit('/n/features')
|
||
|
cy.get('.CodeMirror textarea')
|
||
|
.type('{ctrl}a', { force: true })
|
||
|
.type('{backspace}')
|
||
|
})
|
||
|
|
||
|
it('show deprecation notice on old syntax', () => {
|
||
|
cy.get('.CodeMirror textarea')
|
||
|
.type('---\ntags: a, b, c\n---')
|
||
|
cy.get('.splitter.right .w-100.h-100 .alert.alert-warning')
|
||
|
.should('be.visible')
|
||
|
})
|
||
|
|
||
|
it('show no deprecation notice on yaml-array (1)', () => {
|
||
|
cy.get('.CodeMirror textarea')
|
||
|
.type('---\ntags: [\'a\', \'b\', \'c\']\n---')
|
||
|
cy.get('.splitter.right .w-100.h-100 .alert.alert-warning')
|
||
|
.should('not.exist')
|
||
|
})
|
||
|
|
||
|
it('show no deprecation notice on yaml-array (2)', () => {
|
||
|
cy.get('.CodeMirror textarea')
|
||
|
.type('---\ntags:\n - a\nb\nc\n')
|
||
|
.type('{backspace}{backspace}{backspace}{backspace}')
|
||
|
.type('---')
|
||
|
cy.get('.splitter.right .w-100.h-100 .alert.alert-warning')
|
||
|
.should('not.exist')
|
||
|
})
|
||
|
})
|