mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
Merge aa599db0d5
into d2dd1796a8
This commit is contained in:
commit
56c2e3f466
|
@ -139,6 +139,9 @@ describe('Sub-workflow creation and typed usage', () => {
|
||||||
cy.window().then((win) => {
|
cy.window().then((win) => {
|
||||||
cy.stub(win, 'open').callsFake((url) => {
|
cy.stub(win, 'open').callsFake((url) => {
|
||||||
cy.visit(url);
|
cy.visit(url);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
selectResourceLocatorItem('workflowId', 0, 'Create a');
|
selectResourceLocatorItem('workflowId', 0, 'Create a');
|
||||||
|
|
||||||
openNode('When Executed by Another Workflow');
|
openNode('When Executed by Another Workflow');
|
||||||
|
@ -167,14 +170,12 @@ describe('Sub-workflow creation and typed usage', () => {
|
||||||
);
|
);
|
||||||
|
|
||||||
assertOutputTableContent([
|
assertOutputTableContent([
|
||||||
['[null]', '[null]', '[null]', '[null]', '[null]', 'true'],
|
['[null]', '[null]', '[null]', '[null]', '[null]', 'false'],
|
||||||
['[null]', '[null]', '[null]', '[null]', '[null]', 'true'],
|
['[null]', '[null]', '[null]', '[null]', '[null]', 'false'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
clickExecuteNode();
|
clickExecuteNode();
|
||||||
});
|
});
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should show node issue when no fields are defined in manual mode', () => {
|
it('should show node issue when no fields are defined in manual mode', () => {
|
||||||
getExecuteNodeButton().should('be.disabled');
|
getExecuteNodeButton().should('be.disabled');
|
||||||
|
|
Loading…
Reference in a new issue