2023-06-19 01:02:50 +03:00

15 lines
277 B
JavaScript

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');
});
});