Nikolay Rozhkov db2a556f62 Cleanup
2023-06-25 00:23:42 +03:00

16 lines
261 B
JavaScript

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