mermaid/cypress/integration/other/external-diagrams.spec.js
2022-12-08 16:39:21 +01:00

11 lines
348 B
JavaScript

import { urlSnapshotTest } from '../../helpers/util';
describe('mermaid', () => {
describe('registerDiagram', () => {
it('should work on @mermaid-js/mermaid-mindmap and mermaid-example-diagram', () => {
const url = 'http://localhost:9000/external-diagrams-mindmap.html';
urlSnapshotTest(url, {}, false, false);
});
});
});