tests: add additional components tests

This commit is contained in:
braks
2022-10-08 23:25:34 +02:00
committed by Braks
parent ef11069102
commit 26b251886e
9 changed files with 123 additions and 4 deletions
@@ -0,0 +1,9 @@
<script setup>
import { Background, VueFlow } from '@braks/vue-flow'
</script>
<template>
<VueFlow>
<Background />
</VueFlow>
</template>
@@ -0,0 +1,18 @@
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')
})
})