mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
chore: Rename Test workflow -> Execute workflow (#15112)
This commit is contained in:
@@ -196,7 +196,7 @@ describe('Data pinning', () => {
|
||||
});
|
||||
|
||||
function setExpressionOnStringValueInSet(expression: string) {
|
||||
cy.get('button').contains('Test step').click();
|
||||
cy.get('button').contains('Execute step').click();
|
||||
|
||||
ndv.getters.assignmentCollectionAdd('assignments').click();
|
||||
ndv.getters.assignmentValue('assignments').contains('Expression').invoke('show').click();
|
||||
|
||||
@@ -325,7 +325,7 @@ describe('Node Creator', () => {
|
||||
nodeCreatorFeature.getters.getCategoryItem('Actions').click();
|
||||
nodeCreatorFeature.getters.getCreatorItem('Create a credential').click();
|
||||
NDVModal.actions.close();
|
||||
WorkflowPage.actions.deleteNode('When clicking ‘Test workflow’');
|
||||
WorkflowPage.actions.deleteNode('When clicking ‘Execute workflow’');
|
||||
WorkflowPage.getters.canvasNodePlusEndpointByName('n8n').click();
|
||||
nodeCreatorFeature.getters.searchBar().find('input').clear().type('n8n');
|
||||
nodeCreatorFeature.getters.getCreatorItem('n8n').click();
|
||||
|
||||
@@ -28,8 +28,8 @@ describe('Manual partial execution', () => {
|
||||
|
||||
canvas.actions.openNode('Edit Fields');
|
||||
|
||||
cy.get('button').contains('Test step').click(); // create run data
|
||||
cy.get('button').contains('Test step').click(); // use run data
|
||||
cy.get('button').contains('Execute step').click(); // create run data
|
||||
cy.get('button').contains('Execute step').click(); // use run data
|
||||
|
||||
ndv.actions.close();
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ describe('Editors', () => {
|
||||
});
|
||||
ndv.actions.close();
|
||||
|
||||
workflowPage.actions.openNode('When clicking ‘Test workflow’');
|
||||
workflowPage.actions.openNode('When clicking ‘Execute workflow’');
|
||||
ndv.actions.setPinnedData([{ table: 'test_table' }]);
|
||||
ndv.actions.close();
|
||||
|
||||
|
||||
@@ -749,7 +749,7 @@ describe('NDV', () => {
|
||||
ndv.getters.backToCanvas().click();
|
||||
workflowPage.actions.executeWorkflow();
|
||||
// Manual tigger node should show success indicator
|
||||
workflowPage.actions.openNode('When clicking ‘Test workflow’');
|
||||
workflowPage.actions.openNode('When clicking ‘Execute workflow’');
|
||||
ndv.getters.nodeRunSuccessIndicator().should('exist');
|
||||
ndv.getters.nodeRunTooltipIndicator().should('exist');
|
||||
// Code node should show error
|
||||
@@ -916,7 +916,7 @@ describe('NDV', () => {
|
||||
.should('contain.text', 'onlyOnItem3');
|
||||
});
|
||||
|
||||
it('should keep search expanded after Test step node run', () => {
|
||||
it('should keep search expanded after Execute step node run', () => {
|
||||
cy.createFixtureWorkflow('Test_ndv_search.json');
|
||||
workflowPage.actions.zoomToFit();
|
||||
workflowPage.actions.executeWorkflow();
|
||||
|
||||
@@ -23,7 +23,7 @@ describe('Logs', () => {
|
||||
logs.getOverviewStatus().contains('Running').should('exist');
|
||||
|
||||
logs.getLogEntries().should('have.length', 4);
|
||||
logs.getLogEntries().eq(0).should('contain.text', 'When clicking ‘Test workflow’');
|
||||
logs.getLogEntries().eq(0).should('contain.text', 'When clicking ‘Execute workflow’');
|
||||
logs.getLogEntries().eq(1).should('contain.text', 'Code');
|
||||
logs.getLogEntries().eq(2).should('contain.text', 'Loop Over Items');
|
||||
logs.getLogEntries().eq(3).should('contain.text', 'Wait');
|
||||
|
||||
@@ -64,7 +64,7 @@ describe('Code node', () => {
|
||||
.type('{selectall}')
|
||||
.paste(`$input.itemMatching()
|
||||
$input.item
|
||||
$('When clicking ‘Test workflow’').item
|
||||
$('When clicking ‘Execute workflow’').item
|
||||
$input.first(1)
|
||||
|
||||
for (const item of $input.all()) {
|
||||
|
||||
Reference in New Issue
Block a user