test: Skip e2e check of rendered nodes in node creator (#4761)

This commit is contained in:
OlegIvaniv
2022-11-29 14:13:50 +01:00
committed by GitHub
parent b1287ba8cb
commit 92c77127d6

View File

@@ -97,8 +97,9 @@ describe('Node Creator', () => {
// TODO: Replace once we have canvas feature utils // TODO: Replace once we have canvas feature utils
cy.get('div').contains("On clicking 'execute'").should('exist'); cy.get('div').contains("On clicking 'execute'").should('exist');
}) })
// TODO: This tests has to be skipped due to a memory leak in the node creator
it('check if non-core nodes are rendered', () => { // we should unskip it once we have fixed the memory leak
it.skip('check if non-core nodes are rendered', () => {
cy.wait('@nodesIntercept').then((interception) => { cy.wait('@nodesIntercept').then((interception) => {
const nodes = interception.response?.body as INodeTypeDescription[]; const nodes = interception.response?.body as INodeTypeDescription[];