mermaid/cypress/integration/other/external-diagrams.spec.js

11 lines
348 B
JavaScript
Raw Normal View History

import { urlSnapshotTest } from '../../helpers/util';
2022-11-10 13:51:53 +05:30
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);
2022-11-10 13:51:53 +05:30
});
});
});