implemented generic tests for config based test flow creation

This commit is contained in:
Peter
2023-11-07 13:04:44 +01:00
parent 57e6e389c9
commit 3676670c44
20 changed files with 375 additions and 396 deletions
+7
View File
@@ -1,4 +1,7 @@
// See https://kit.svelte.dev/docs/types#app
import type { Edge, Node, SvelteFlowProps } from '@xyflow/svelte';
// for information about these interfaces
declare global {
namespace App {
@@ -7,6 +10,10 @@ declare global {
// interface PageData {}
// interface Platform {}
}
interface GenericTestCase {
svelteFlowProps: Omit<SvelteFlowProps, 'nodes' | 'edges'> & { nodes: Node[]; edges: Edge[] };
}
}
export {};