mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-15 06:19:24 +02:00
14 lines
325 B
TypeScript
14 lines
325 B
TypeScript
import { imgSnapshotTest } from '../../helpers/util.js';
|
|
|
|
describe('info diagram', () => {
|
|
it('should handle an info definition', () => {
|
|
imgSnapshotTest(`info`);
|
|
cy.get('svg');
|
|
});
|
|
|
|
it('should handle an info definition with showInfo', () => {
|
|
imgSnapshotTest(`info showInfo`);
|
|
cy.get('svg');
|
|
});
|
|
});
|