2023-06-21 03:54:55 +03:00

15 lines
269 B
JavaScript

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