Skip to content

Commit

Permalink
Fix: flowchart-elk e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
kairi003 committed Dec 1, 2024
1 parent df636c6 commit 798f53f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cypress/integration/rendering/flowchart-elk.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ describe('Flowchart ELK', () => {
const style = svg.attr('style');
expect(style).to.match(/^max-width: [\d.]+px;$/);
const maxWidthValue = parseFloat(style.match(/[\d.]+/g).join(''));
expect(maxWidthValue).to.be.within(230 * 0.95, 230 * 1.05);
expect(maxWidthValue).to.be.within(390 * 0.95, 390 * 1.05);
});
});
it('8-elk: should render a flowchart when useMaxWidth is false', () => {
Expand All @@ -128,7 +128,7 @@ describe('Flowchart ELK', () => {
const width = parseFloat(svg.attr('width'));
// use within because the absolute value can be slightly different depending on the environment ±5%
// expect(height).to.be.within(446 * 0.95, 446 * 1.05);
expect(width).to.be.within(230 * 0.95, 230 * 1.05);
expect(width).to.be.within(390 * 0.95, 390 * 1.05);
expect(svg).to.not.have.attr('style');
});
});
Expand Down Expand Up @@ -692,7 +692,7 @@ A --> B
{}
);
cy.get('svg').should((svg) => {
const edges = svg.querySelectorAll('.edges > path');
const edges = svg[0].querySelectorAll('.edges > path');
edges.forEach((edge) => {
expect(edge).to.have.class('flowchart-link');
});
Expand Down Expand Up @@ -743,10 +743,10 @@ NL\`") --"\`1o **bold**\`"--> c
imgSnapshotTest(
`%%{init: {"flowchart": {"htmlLabels": true}} }%%
flowchart-elk LR
b(\`The dog in **the** hog.(1).. a a a a *very long text* about it
b("The dog in **the** hog.(1).. a a a a *very long text* about it
Word!
Another line with many, many words. Another line with many, many words. Another line with many, many words. Another line with many, many words. Another line with many, many words. Another line with many, many words. Another line with many, many words. Another line with many, many words. \`) --> c
Another line with many, many words. Another line with many, many words. Another line with many, many words. Another line with many, many words. Another line with many, many words. Another line with many, many words. Another line with many, many words. Another line with many, many words. ") --> c
`,
{ flowchart: { titleTopMargin: 0 } }
Expand Down Expand Up @@ -841,7 +841,7 @@ end
{ flowchart: { titleTopMargin: 0 } }
);
});
it('Sub graphs and markdown strings', () => {
it('Sub graphs and markdown strings2', () => {
imgSnapshotTest(
`---
config:
Expand Down

0 comments on commit 798f53f

Please sign in to comment.