diff --git a/cypress/platform/per.html b/cypress/platform/per.html index a6d3397c3..c9987d84f 100644 --- a/cypress/platform/per.html +++ b/cypress/platform/per.html @@ -90,24 +90,23 @@ stateDiagram-v2 >
- stateDiagram - StateID - + stateDiagram-v2 + [*] --> First + state First { + [*] --> second + second --> [*] + }
- stateDiagram - direction LR - [*] --> A - A --> B - B --> C - state B { - direction LR - a --> b - } - B --> D + flowchart LR + A[Start] --Some text--> B(Continue) + B --> C{Evaluate} + C -- One --> D[Option 1] + C -- Two --> E[Option 2] + C -- Three --> F[fa:fa-car Option 3]+