before functional changes by codex
This commit is contained in:
3
examples/README.md
Normal file
3
examples/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# diffuser Example Flows
|
||||
|
||||
Placeholder structure.
|
||||
3
examples/basic.flow.json
Normal file
3
examples/basic.flow.json
Normal file
@@ -0,0 +1,3 @@
|
||||
[
|
||||
{"id":"diffuser_basic_tab","type":"tab","label":"diffuser basic","disabled":false,"info":"placeholder"}
|
||||
]
|
||||
3
examples/edge.flow.json
Normal file
3
examples/edge.flow.json
Normal file
@@ -0,0 +1,3 @@
|
||||
[
|
||||
{"id":"diffuser_edge_tab","type":"tab","label":"diffuser edge","disabled":false,"info":"placeholder"}
|
||||
]
|
||||
3
examples/integration.flow.json
Normal file
3
examples/integration.flow.json
Normal file
@@ -0,0 +1,3 @@
|
||||
[
|
||||
{"id":"diffuser_integration_tab","type":"tab","label":"diffuser integration","disabled":false,"info":"placeholder"}
|
||||
]
|
||||
3
test/README.md
Normal file
3
test/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# diffuser Test Suite Layout
|
||||
|
||||
Placeholder structure (diffuser currently has no runtime module files).
|
||||
6
test/basic/structure-placeholder.basic.test.js
Normal file
6
test/basic/structure-placeholder.basic.test.js
Normal file
@@ -0,0 +1,6 @@
|
||||
const test = require('node:test');
|
||||
const assert = require('node:assert/strict');
|
||||
|
||||
test('diffuser placeholder structure exists', () => {
|
||||
assert.equal(true, true);
|
||||
});
|
||||
6
test/edge/structure-node.edge.test.js
Normal file
6
test/edge/structure-node.edge.test.js
Normal file
@@ -0,0 +1,6 @@
|
||||
const test = require('node:test');
|
||||
const assert = require('node:assert/strict');
|
||||
|
||||
test('diffuser edge placeholder', () => {
|
||||
assert.equal(true, true);
|
||||
});
|
||||
12
test/integration/structure-examples.integration.test.js
Normal file
12
test/integration/structure-examples.integration.test.js
Normal file
@@ -0,0 +1,12 @@
|
||||
const test = require('node:test');
|
||||
const assert = require('node:assert/strict');
|
||||
const fs = require('node:fs');
|
||||
const path = require('node:path');
|
||||
|
||||
const dir = path.resolve(__dirname, '../../examples');
|
||||
|
||||
test('diffuser placeholder example files exist', () => {
|
||||
for (const file of ['basic.flow.json', 'integration.flow.json', 'edge.flow.json']) {
|
||||
assert.equal(fs.existsSync(path.join(dir, file)), true);
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user