Cleared sankey renderer

This commit is contained in:
Nikolay Rozhkov
2023-06-18 01:32:45 +03:00
parent 6b40b394c8
commit 8e001b92f2
6 changed files with 61 additions and 1455 deletions

View File

@@ -0,0 +1,14 @@
import { imgSnapshotTest, renderGraph } from '../../helpers/util.js';
describe('Sankey Diagram', () => {
it('should render a simple sankey diagram', () => {
imgSnapshotTest(
`
sankey
a -> 30 -> b
`,
{}
);
cy.get('svg');
});
});