287 B12 lines
Blame
1import { imgSnapshotTest } from '../../helpers/util.ts';
2
3describe('info diagram', () => {
4 it('should handle an info definition', () => {
5 imgSnapshotTest(`info`);
6 });
7
8 it('should handle an info definition with showInfo', () => {
9 imgSnapshotTest(`info showInfo`);
10 });
11});
12