21 lines
610 B
TypeScript
21 lines
610 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2022 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { setupFilesVersions } from './filesVersionsUtils'
|
|
|
|
describe('Versions creation', () => {
|
|
beforeEach(() => {
|
|
setupFilesVersions()
|
|
})
|
|
|
|
it('Opens the versions panel and sees the versions', () => {
|
|
cy.get('#tab-version_vue').within(() => {
|
|
cy.get('[data-files-versions-version]').should('have.length', 3)
|
|
cy.get('[data-files-versions-version]').eq(0).contains('Current version')
|
|
cy.get('[data-files-versions-version]').eq(2).contains('Initial version')
|
|
})
|
|
})
|
|
})
|