mermaid/cypress/integration/rendering/info.spec.ts

12 lines
287 B
TypeScript
Raw Normal View History

2023-07-07 13:51:18 +02:00
import { imgSnapshotTest } from '../../helpers/util.ts';
describe('info diagram', () => {
it('should handle an info definition', () => {
imgSnapshotTest(`info`);
});
it('should handle an info definition with showInfo', () => {
imgSnapshotTest(`info showInfo`);
});
});