From b7795ef12d8f5a7674e0c2d99257714f056c950c Mon Sep 17 00:00:00 2001 From: Yokozuna59 Date: Thu, 15 Jun 2023 03:18:09 +0300 Subject: [PATCH] remove empty options in cypress info.spec.ts --- cypress/integration/rendering/info.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/integration/rendering/info.spec.ts b/cypress/integration/rendering/info.spec.ts index ea689f027..3db74c980 100644 --- a/cypress/integration/rendering/info.spec.ts +++ b/cypress/integration/rendering/info.spec.ts @@ -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`); }); });