Files
vue-flow/e2e/cypress/component/3-additional-components/controls/controls.cy.ts
2022-10-08 23:25:34 +02:00

19 lines
315 B
TypeScript

import App from './App.vue'
describe('Render Controls', () => {
beforeEach(() => {
cy.mount(App, {
attrs: {
style: {
width: '100vw',
height: '100vh',
},
},
})
})
it('renders controls', () => {
cy.get('.vue-flow__controls').should('exist')
})
})