From 5aba2fed8b408d3900d657897c4ac7afdd276ae5 Mon Sep 17 00:00:00 2001 From: Yokozuna59 Date: Sat, 17 Jun 2023 00:01:54 +0300 Subject: [PATCH] remove cy.get of info diagram --- cypress/integration/rendering/info.spec.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/cypress/integration/rendering/info.spec.ts b/cypress/integration/rendering/info.spec.ts index 52763a836..3db74c980 100644 --- a/cypress/integration/rendering/info.spec.ts +++ b/cypress/integration/rendering/info.spec.ts @@ -3,11 +3,9 @@ import { imgSnapshotTest } from '../../helpers/util.js'; describe('info diagram', () => { it('should handle an info definition', () => { imgSnapshotTest(`info`); - cy.get('svg'); }); it('should handle an info definition with showInfo', () => { imgSnapshotTest(`info showInfo`); - cy.get('svg'); }); });