mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-28 07:03:17 +08:00
15 lines
481 B
JavaScript
15 lines
481 B
JavaScript
import { urlSnapshotTest, openURLAndVerifyRendering } from '../../helpers/util.ts';
|
|
|
|
describe('Flowchart elk', () => {
|
|
it('should use dagre as fallback', () => {
|
|
urlSnapshotTest('http://localhost:9000/flow-elk.html', {
|
|
name: 'flow-elk fallback to dagre',
|
|
});
|
|
});
|
|
it('should allow overriding with external package', () => {
|
|
urlSnapshotTest('http://localhost:9000/flow-elk.html?elk=true', {
|
|
name: 'flow-elk overriding dagre with elk',
|
|
});
|
|
});
|
|
});
|