mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-21 06:53:17 +08:00
16 lines
276 B
JavaScript
16 lines
276 B
JavaScript
import { imgSnapshotTest, renderGraph } from '../../helpers/util.js';
|
|
|
|
describe('Sankey Diagram', () => {
|
|
it('should render a simple sankey diagram', () => {
|
|
imgSnapshotTest(
|
|
`
|
|
sankey
|
|
|
|
a,b,10
|
|
`,
|
|
{}
|
|
);
|
|
cy.get('svg');
|
|
});
|
|
});
|