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

11 lines
339 B
JavaScript
Raw Normal View History

2023-07-07 13:51:18 +02:00
import { urlSnapshotTest } from '../../helpers/util.ts';
2022-11-10 09:21:53 +01:00
describe('mermaid', () => {
describe('registerDiagram', () => {
it('should work on @mermaid-js/mermaid-example-diagram', () => {
const url = 'http://localhost:9000/external-diagrams-example-diagram.html';
urlSnapshotTest(url, {}, false, false);
2022-11-10 09:21:53 +01:00
});
});
});