2023-06-22 15:58:09 +03:00

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