diff --git a/cypress/integration/rendering/classDiagram.spec.js b/cypress/integration/rendering/classDiagram.spec.js index cab3649df..47f10060b 100644 --- a/cypress/integration/rendering/classDiagram.spec.js +++ b/cypress/integration/rendering/classDiagram.spec.js @@ -19,7 +19,7 @@ describe('Class diagram', () => { Class07 : Object[] elementData Class01 : size() Class01 : int chimp - Class01 : int gorilla + Class01 : int gorillaGorilla Class01 : -int privateChimp Class01 : +int publicGorilla Class01 : #int protectedMarmoset diff --git a/cypress/integration/rendering/flowchart-v2.spec.js b/cypress/integration/rendering/flowchart-v2.spec.js index e23820ffa..1f0df27f6 100644 --- a/cypress/integration/rendering/flowchart-v2.spec.js +++ b/cypress/integration/rendering/flowchart-v2.spec.js @@ -8,7 +8,6 @@ describe('Flowchart v2', () => { B --> C{Let me think} C -->|One| D[Laptop] C -->|Two| E[iPhone] - C -->|Three| F[fa:fa-car Car] `, {} ); diff --git a/cypress/integration/rendering/pie.spec.ts b/cypress/integration/rendering/pie.spec.ts index 4a1d774c0..3d210083b 100644 --- a/cypress/integration/rendering/pie.spec.ts +++ b/cypress/integration/rendering/pie.spec.ts @@ -51,7 +51,7 @@ describe('pie chart', () => { it('should render a pie diagram when useMaxWidth is false', () => { renderGraph( `pie title Sports in Sweden - "Bandy": 40 + "Bandy": 140 "Ice-Hockey": 80 "Football": 90 `, diff --git a/cypress/integration/rendering/stateDiagram.spec.js b/cypress/integration/rendering/stateDiagram.spec.js index 01e7a2b44..e17fa0e3b 100644 --- a/cypress/integration/rendering/stateDiagram.spec.js +++ b/cypress/integration/rendering/stateDiagram.spec.js @@ -5,8 +5,8 @@ describe('State diagram', () => { imgSnapshotTest( ` stateDiagram - [*] --> State1 - State1 --> [*] + [*] --> State122 + State122 --> [*] `, { logLevel: 0, fontFamily: 'courier' } ); @@ -18,7 +18,7 @@ describe('State diagram', () => { stateDiagram [*] --> S1 - state "Some long name" as S1 + state "Some long names" as S1 `, { logLevel: 0, fontFamily: 'courier' } );