mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
ci: Fix prettier auto-formatting (no-changelog) (#7063)
This commit is contained in:
committed by
GitHub
parent
fa3d7070b0
commit
a693b29134
@@ -9,9 +9,15 @@ describe('Resource Mapper', () => {
|
||||
});
|
||||
|
||||
it('should not retrieve list options when required params throw errors', () => {
|
||||
workflowPage.actions.addInitialNodeToCanvas('E2e Test', {action: 'Resource Mapping Component'});
|
||||
workflowPage.actions.addInitialNodeToCanvas('E2e Test', {
|
||||
action: 'Resource Mapping Component',
|
||||
});
|
||||
|
||||
ndv.getters.resourceMapperFieldsContainer().should('be.visible').findChildByTestId('parameter-input').should('have.length', 2);
|
||||
ndv.getters
|
||||
.resourceMapperFieldsContainer()
|
||||
.should('be.visible')
|
||||
.findChildByTestId('parameter-input')
|
||||
.should('have.length', 2);
|
||||
|
||||
ndv.actions.setInvalidExpression('fieldId');
|
||||
|
||||
@@ -20,13 +26,23 @@ describe('Resource Mapper', () => {
|
||||
});
|
||||
|
||||
it('should retrieve list options when optional params throw errors', () => {
|
||||
workflowPage.actions.addInitialNodeToCanvas('E2e Test', {action: 'Resource Mapping Component'});
|
||||
workflowPage.actions.addInitialNodeToCanvas('E2e Test', {
|
||||
action: 'Resource Mapping Component',
|
||||
});
|
||||
|
||||
ndv.getters.resourceMapperFieldsContainer().should('be.visible').findChildByTestId('parameter-input').should('have.length', 2);
|
||||
ndv.getters
|
||||
.resourceMapperFieldsContainer()
|
||||
.should('be.visible')
|
||||
.findChildByTestId('parameter-input')
|
||||
.should('have.length', 2);
|
||||
|
||||
ndv.actions.setInvalidExpression('otherField');
|
||||
|
||||
ndv.actions.refreshResourceMapperColumns();
|
||||
ndv.getters.resourceMapperFieldsContainer().should('be.visible').findChildByTestId('parameter-input').should('have.length', 2);
|
||||
ndv.getters
|
||||
.resourceMapperFieldsContainer()
|
||||
.should('be.visible')
|
||||
.findChildByTestId('parameter-input')
|
||||
.should('have.length', 2);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user