This commit is contained in:
Sidharth Vinod
2023-09-06 13:09:06 +05:30
parent b09cdc0a18
commit 0480339272
2 changed files with 42 additions and 0 deletions

View File

@@ -126,4 +126,14 @@ describe('Configuration', () => {
);
});
});
it('should not render error diagram if suppressErrorRendering is set', () => {
const url = 'http://localhost:9000/regression/issue-1874.html';
cy.viewport(1440, 1024);
cy.visit(url);
cy.get('#test');
cy.matchImageSnapshot(
'configuration.spec-should-not-render-error-diagram-if-suppressErrorRendering-is-set'
);
});
});