2023-06-25 21:56:14 +03:00

15 lines
242 B
JavaScript

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