diff --git a/test/edge/structure-examples-node-type.edge.test.js b/test/edge/structure-examples-node-type.edge.test.js index d6a629c..7cc7484 100644 --- a/test/edge/structure-examples-node-type.edge.test.js +++ b/test/edge/structure-examples-node-type.edge.test.js @@ -3,7 +3,7 @@ const assert = require('node:assert/strict'); const fs = require('node:fs'); const path = require('node:path'); -const flow = JSON.parse(fs.readFileSync(path.resolve(__dirname, '../../examples/basic.flow.json'), 'utf8')); +const flow = JSON.parse(fs.readFileSync(path.resolve(__dirname, '../../examples/02-Dashboard.json'), 'utf8')); test('basic example includes node type machineGroupControl', () => { const count = flow.filter((n) => n && n.type === 'machineGroupControl').length;