knsv/mermaid

View on GitHub
cypress/integration/other/external-diagrams.spec.js

Summary

Maintainability
A
0 mins
Test Coverage
import { urlSnapshotTest } from '../../helpers/util.ts';

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);
    });
  });
});