From b9a73c88b5c11eb554766687bff606da4279774d Mon Sep 17 00:00:00 2001 From: Knut Sveidqvist Date: Tue, 7 May 2024 15:47:39 +0200 Subject: [PATCH] #5237 Bugfix for fork/join --- cypress/platform/knsv2.html | 30 +++++++++++-------- .../rendering-elements/nodes.js | 3 +- 2 files changed, 20 insertions(+), 13 deletions(-) diff --git a/cypress/platform/knsv2.html b/cypress/platform/knsv2.html index 69c730a55..e36dd4bc7 100644 --- a/cypress/platform/knsv2.html +++ b/cypress/platform/knsv2.html @@ -73,15 +73,20 @@
-stateDiagram-v2
-    state ProActive {
-      state Active {
-          APA
-      }
-    }
+stateDiagram
+    state fork_state <>
+      [*] --> fork_state
+      fork_state --> State2
+      fork_state --> State3
+
+      state join_state <>
+      State2 --> join_state
+      State3 --> join_state
+      join_state --> State4
+      State4 --> [*]
       
-
+    
 stateDiagram-v2
     [*] --> Active
 
@@ -100,13 +105,13 @@ stateDiagram-v2
     }
       
-
+    
 stateDiagram-v2
     state ProActive {
       state Active {
-    Chimp --> A
-    Chimp --> B
-    Chimp --> C
+        Chimp --> A
+        Chimp --> B
+        Chimp --> C
       }
     }