mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
test: Re-enable node IO filter test for pinned data (#9200)
This commit is contained in:
parent
29ee4fab61
commit
93f23ea4b2
|
@ -23,18 +23,18 @@ describe('Node IO Filter', () => {
|
||||||
|
|
||||||
searchInput.filter(':focus').should('exist');
|
searchInput.filter(':focus').should('exist');
|
||||||
ndv.getters.pagination().find('li').should('have.length', 3);
|
ndv.getters.pagination().find('li').should('have.length', 3);
|
||||||
cy.get('.highlight').should('not.exist');
|
ndv.getters.outputDataContainer().find('mark').should('not.exist');
|
||||||
|
|
||||||
searchInput.type('ar');
|
searchInput.type('ar');
|
||||||
ndv.getters.pagination().find('li').should('have.length', 2);
|
ndv.getters.pagination().find('li').should('have.length', 2);
|
||||||
cy.get('.highlight').its('length').should('be.gt', 0);
|
ndv.getters.outputDataContainer().find('mark').its('length').should('be.gt', 0);
|
||||||
|
|
||||||
searchInput.type('i');
|
searchInput.type('i');
|
||||||
ndv.getters.pagination().should('not.exist');
|
ndv.getters.pagination().should('not.exist');
|
||||||
cy.get('.highlight').its('length').should('be.gt', 0);
|
ndv.getters.outputDataContainer().find('mark').its('length').should('be.gt', 0);
|
||||||
});
|
});
|
||||||
|
|
||||||
it.only('should filter input/output data separately', () => {
|
it('should filter input/output data separately', () => {
|
||||||
workflowPage.getters.canvasNodes().eq(1).dblclick();
|
workflowPage.getters.canvasNodes().eq(1).dblclick();
|
||||||
cy.wait(500);
|
cy.wait(500);
|
||||||
ndv.getters.outputDataContainer().should('be.visible');
|
ndv.getters.outputDataContainer().should('be.visible');
|
||||||
|
|
Loading…
Reference in a new issue