2023-06-24 23:11:54 +03:00

16 lines
274 B
JavaScript

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