mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
test: Skip e2e check of rendered nodes in node creator (#4761)
This commit is contained in:
parent
b1287ba8cb
commit
92c77127d6
|
@ -97,8 +97,9 @@ describe('Node Creator', () => {
|
|||
// TODO: Replace once we have canvas feature utils
|
||||
cy.get('div').contains("On clicking 'execute'").should('exist');
|
||||
})
|
||||
|
||||
it('check if non-core nodes are rendered', () => {
|
||||
// TODO: This tests has to be skipped due to a memory leak in the node creator
|
||||
// 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) => {
|
||||
const nodes = interception.response?.body as INodeTypeDescription[];
|
||||
|
||||
|
|
Loading…
Reference in a new issue