feat(tests): add update edge test

This commit is contained in:
braks
2022-10-07 20:06:18 +02:00
committed by Braks
parent 3770083618
commit fa5b5da740
2 changed files with 35 additions and 1 deletions

View File

@@ -0,0 +1,34 @@
import { useVueFlow } from '@braks/vue-flow'
import { getElements } from '../../../../utils'
const { nodes, edges } = getElements(2, 2)
describe('Store Action: `updateEdge`', () => {
const store = useVueFlow({ id: 'test' })
let randomIndex: number
beforeEach(() => {
cy.vueFlow({
nodes,
edges,
})
})
beforeEach(() => {
randomIndex = Math.floor(Math.random() * edges.length)
})
it('updates edge', () => {
store.updateEdge(store.edges.value[randomIndex], {
sourceHandle: null,
targetHandle: null,
source: nodes[0].id,
target: nodes[1].id,
})
const storedEdge = store.edges.value[randomIndex]
expect(storedEdge.source).to.equal(nodes[0].id)
expect(storedEdge.target).to.equal(nodes[1].id)
})
})

View File

@@ -3,7 +3,7 @@ import { getElements } from '../../../../utils'
const { nodes } = getElements()
describe('Store Action: `setMinZoom`', () => {
describe('Store Action: `setMaxZoom`', () => {
const store = useVueFlow({ id: 'test' })
beforeEach(() => {