16 lines
261 B
JavaScript
Raw Normal View History

2023-06-25 00:23:42 +03:00
import { imgSnapshotTest } from '../../helpers/util.js';
2023-06-18 01:32:45 +03:00
describe('Sankey Diagram', () => {
2023-06-24 23:11:54 +03:00
it('should render a simple example', () => {
2023-06-18 01:32:45 +03:00
imgSnapshotTest(
`
2023-06-24 23:11:54 +03:00
sankey-beta
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');
});
});