diff --git a/cypress/e2e/16-webhook-node.cy.ts b/cypress/e2e/16-webhook-node.cy.ts index 6eff0542a7..80a649a952 100644 --- a/cypress/e2e/16-webhook-node.cy.ts +++ b/cypress/e2e/16-webhook-node.cy.ts @@ -250,7 +250,7 @@ describe('Webhook Trigger node', async () => { }); }); - it.only('should listen for a GET request with Basic Authentication', () => { + it('should listen for a GET request with Basic Authentication', () => { const webhookPath = uuid(); simpleWebhookCall({ method: 'GET', diff --git a/cypress/e2e/17-sharing.cy.ts b/cypress/e2e/17-sharing.cy.ts index cf0f4ccd35..acd61b05db 100644 --- a/cypress/e2e/17-sharing.cy.ts +++ b/cypress/e2e/17-sharing.cy.ts @@ -48,7 +48,7 @@ describe('Sharing', { disableAutoLogin: true }, () => { workflowPage.actions.setWorkflowName('Workflow W1'); workflowPage.actions.addInitialNodeToCanvas('Manual Trigger'); workflowPage.actions.addNodeToCanvas('Notion', true, true); - ndv.getters.credentialInput().should('contain', 'Credential C1'); + ndv.getters.credentialInput().find('input').should('have.value', 'Credential C1'); ndv.actions.close(); workflowPage.actions.openShareModal(); @@ -87,16 +87,12 @@ describe('Sharing', { disableAutoLogin: true }, () => { workflowsPage.getters.workflowCards().should('have.length', 1); workflowsPage.getters.workflowCard('Workflow W1').click(); workflowPage.actions.addNodeToCanvas('Airtable', true, true); - ndv.getters.credentialInput().should('contain', 'Credential C2'); + ndv.getters.credentialInput().find('input').should('have.value', 'Credential C2'); ndv.actions.close(); workflowPage.actions.saveWorkflowOnButtonClick(); workflowPage.actions.openNode('Notion'); - ndv.getters - .credentialInput() - .find('input') - .should('have.value', 'Credential C1') - .should('be.disabled'); + ndv.getters.credentialInput().should('have.value', 'Credential C1').should('be.disabled'); ndv.actions.close(); }); @@ -116,11 +112,7 @@ describe('Sharing', { disableAutoLogin: true }, () => { workflowsPage.getters.workflowCards().should('have.length', 2); workflowsPage.getters.workflowCard('Workflow W1').click(); workflowPage.actions.openNode('Notion'); - ndv.getters - .credentialInput() - .find('input') - .should('have.value', 'Credential C1') - .should('be.disabled'); + ndv.getters.credentialInput().should('have.value', 'Credential C1').should('be.disabled'); ndv.actions.close(); cy.waitForLoad(); diff --git a/packages/editor-ui/src/components/SettingsLogStreaming/EventSelection.ee.vue b/packages/editor-ui/src/components/SettingsLogStreaming/EventSelection.ee.vue index 45b728dbef..15ed5688ba 100644 --- a/packages/editor-ui/src/components/SettingsLogStreaming/EventSelection.ee.vue +++ b/packages/editor-ui/src/components/SettingsLogStreaming/EventSelection.ee.vue @@ -99,7 +99,7 @@ export default { }, methods: { onInput() { - this.$emit('input'); + this.$emit(onUpdate); }, onCheckboxChecked(eventName: string, checked: boolean) { this.logStreamingStore.setSelectedInGroup(this.destinationId, eventName, checked); diff --git a/packages/editor-ui/src/components/forms/ResourceOwnershipSelect.ee.vue b/packages/editor-ui/src/components/forms/ResourceOwnershipSelect.ee.vue index c57a614fba..3cfcd9971d 100644 --- a/packages/editor-ui/src/components/forms/ResourceOwnershipSelect.ee.vue +++ b/packages/editor-ui/src/components/forms/ResourceOwnershipSelect.ee.vue @@ -1,10 +1,12 @@