From 262bc3c875314e8e4280fbc4ed6ddd585b518632 Mon Sep 17 00:00:00 2001 From: moklick Date: Thu, 25 Feb 2021 14:36:23 +0100 Subject: [PATCH] test(graph-utils): use bundled version --- cypress/integration/flow/graph-utils.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/integration/flow/graph-utils.spec.js b/cypress/integration/flow/graph-utils.spec.js index dccf0d23..e582231b 100644 --- a/cypress/integration/flow/graph-utils.spec.js +++ b/cypress/integration/flow/graph-utils.spec.js @@ -1,4 +1,4 @@ -import { isNode, isEdge, getOutgoers, getIncomers, removeElements, addEdge } from '../../../src/utils/graph.ts'; +import { isNode, isEdge, getOutgoers, getIncomers, removeElements, addEdge } from '../../../dist/ReactFlow.js'; const nodes = [ { id: '1', type: 'input', data: { label: 'Node 1' }, position: { x: 250, y: 5 } },