16 lines
276 B
JavaScript
Raw Normal View History

2023-06-18 01:32:45 +03:00
import { imgSnapshotTest, renderGraph } from '../../helpers/util.js';
describe('Sankey Diagram', () => {
it('should render a simple sankey diagram', () => {
imgSnapshotTest(
`
sankey
2023-06-22 15:56:56 +03:00
2023-06-21 03:54:55 +03:00
a,b,10
2023-06-18 01:32:45 +03:00
`,
{}
);
cy.get('svg');
});
});