mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-21 06:53:17 +08:00
15 lines
242 B
JavaScript
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
|
|
`,
|
|
{}
|
|
);
|
|
});
|
|
});
|