Files
vue-flow/tests/cypress/component/3-additional-components/background/background.cy.ts
2023-02-22 20:20:11 +01:00

19 lines
321 B
TypeScript

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