From ddf2b07424d9df63dbc367e0bb70c819c113afaa Mon Sep 17 00:00:00 2001 From: znetsixe Date: Sat, 23 May 2026 15:29:49 +0200 Subject: [PATCH] test: point structure check at renamed 02-Dashboard.json Example flows were renamed to the numbered-tier convention (01-Basic.json / 02-Dashboard.json). The structure test still pointed at the old basic.flow.json path. Rewire to the current filename. Co-Authored-By: Claude Opus 4.7 (1M context) --- test/edge/structure-examples-node-type.edge.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;