test: verify standalone mode round-trips for properties, waypoints and animations

- Fix ApiEdge type: add 'basic' to animated union
- Add 5 standalone storage tests: properties, empty properties, waypoints,
  basic animation, and all three animation types round-trip through localStorage
This commit is contained in:
Pouzor
2026-04-09 16:28:20 +02:00
parent 9134812e32
commit f1e9fd7cf8
2 changed files with 68 additions and 1 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ export interface ApiEdge {
speed?: string | null
custom_color?: string | null
path_style?: string | null
animated?: boolean | 'snake' | 'flow' | 'none'
animated?: boolean | 'snake' | 'flow' | 'basic' | 'none'
source_handle?: string | null
target_handle?: string | null
waypoints?: Waypoint[] | null