Files
mermaid/cypress/integration/rendering/info.spec.ts
2023-06-20 17:53:33 +03:00

16 lines
413 B
TypeScript

import { imgSnapshotTest } from '../../helpers/util.js';
describe('info diagram', () => {
it('should handle an info definition', () => {
imgSnapshotTest(`info`);
});
it('should handle an info definition with showInfo', () => {
imgSnapshotTest(`info showInfo`);
});
it('should handle an info definition in sandbox', () => {
imgSnapshotTest(`info`, { securityLevel: 'sandbox' });
});
});