mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix: update ndv e2e tests
This commit is contained in:
parent
d975b34794
commit
d0a0c85352
|
@ -28,7 +28,10 @@ describe('NDV', () => {
|
|||
|
||||
cy.grantBrowserPermissions('clipboardReadWrite', 'clipboardSanitizedWrite');
|
||||
|
||||
cy.readClipboard().then((url) => {
|
||||
cy.window()
|
||||
.focus()
|
||||
.readClipboard()
|
||||
.then((url) => {
|
||||
cy.request({
|
||||
method: 'GET',
|
||||
url,
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
</template>
|
||||
<div>
|
||||
<n8n-button
|
||||
v-bind="$attrs"
|
||||
:loading="nodeRunning && !isListeningForEvents && !isListeningForWorkflowEvents"
|
||||
:disabled="disabled || !!disabledHint"
|
||||
:label="buttonLabel"
|
||||
|
@ -32,6 +33,7 @@ import { useNodeTypesStore } from '@/stores/nodeTypes.store';
|
|||
import { useToast, useMessage } from '@/composables';
|
||||
|
||||
export default defineComponent({
|
||||
inheritAttrs: false,
|
||||
mixins: [workflowRun, pinData],
|
||||
props: {
|
||||
nodeName: {
|
||||
|
|
|
@ -984,8 +984,6 @@ export const useWorkflowsStore = defineStore(STORES.WORKFLOWS, {
|
|||
nodes: [...this.workflow.nodes.slice(0, i), ...this.workflow.nodes.slice(i + 1)],
|
||||
};
|
||||
|
||||
console.log(this.workflow);
|
||||
|
||||
uiStore.stateIsDirty = true;
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue