remove empty options in cypress info.spec.ts

This commit is contained in:
Yokozuna59
2023-06-15 03:18:09 +03:00
committed by GitHub
parent 35e81f3fd4
commit b7795ef12d

View File

@@ -2,10 +2,10 @@ import { imgSnapshotTest } from '../../helpers/util.js';
describe('info diagram', () => {
it('should handle an info definition', () => {
imgSnapshotTest(`info`, {});
imgSnapshotTest(`info`);
});
it('should handle an info definition with showInfo', () => {
imgSnapshotTest(`info showInfo`, {});
imgSnapshotTest(`info showInfo`);
});
});