Files
svgedit/cypress/e2e/ui/export.cy.js
JFH 9e3a4a9091 cypress 10 migration (#777)
* cypress 10 migration

* fix lint
2022-06-18 10:32:27 +02:00

21 lines
491 B
JavaScript

import {
visitAndApproveStorage, openMainMenu
} from '../../support/ui-test-helper.js'
describe('UI - Export tests', function () {
beforeEach(() => {
visitAndApproveStorage()
})
it('Editor - No parameters: Has export button', () => {
openMainMenu()
cy.get('#tool_export')
})
it('Editor - No parameters: Export button clicking; dialog opens', () => {
openMainMenu()
cy.get('#tool_export').click({ force: true })
cy.get('#dialog_content select')
})
})