mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
docs(editor): New Nodes Panel title for triggers (#7314)
Github issue / Community forum post (link here to close automatically):
This commit is contained in:
parent
0adc533719
commit
942d0b91fc
|
@ -15,7 +15,7 @@ describe('Node Creator', () => {
|
||||||
it('should open node creator on trigger tab if no trigger is on canvas', () => {
|
it('should open node creator on trigger tab if no trigger is on canvas', () => {
|
||||||
nodeCreatorFeature.getters.canvasAddButton().click();
|
nodeCreatorFeature.getters.canvasAddButton().click();
|
||||||
|
|
||||||
nodeCreatorFeature.getters.nodeCreator().contains('Select a trigger').should('be.visible');
|
nodeCreatorFeature.getters.nodeCreator().contains('What triggers this workflow?').should('be.visible');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should navigate subcategory', () => {
|
it('should navigate subcategory', () => {
|
||||||
|
@ -73,7 +73,7 @@ describe('Node Creator', () => {
|
||||||
nodeCreatorFeature.getters.nodeCreator().contains('What happens next?').should('be.visible');
|
nodeCreatorFeature.getters.nodeCreator().contains('What happens next?').should('be.visible');
|
||||||
|
|
||||||
nodeCreatorFeature.getters.getCreatorItem('Add another trigger').click();
|
nodeCreatorFeature.getters.getCreatorItem('Add another trigger').click();
|
||||||
nodeCreatorFeature.getters.nodeCreator().contains('Select a trigger').should('be.visible');
|
nodeCreatorFeature.getters.nodeCreator().contains('What triggers this workflow?').should('be.visible');
|
||||||
nodeCreatorFeature.getters.activeSubcategory().find('button').should('exist');
|
nodeCreatorFeature.getters.activeSubcategory().find('button').should('exist');
|
||||||
nodeCreatorFeature.getters.activeSubcategory().find('button').click();
|
nodeCreatorFeature.getters.activeSubcategory().find('button').click();
|
||||||
nodeCreatorFeature.getters.nodeCreator().contains('What happens next?').should('be.visible');
|
nodeCreatorFeature.getters.nodeCreator().contains('What happens next?').should('be.visible');
|
||||||
|
|
|
@ -58,7 +58,7 @@ describe('NodesListPanel', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
await nextTick();
|
await nextTick();
|
||||||
expect(screen.getByText('Select a trigger')).toBeInTheDocument();
|
expect(screen.getByText('What triggers this workflow?')).toBeInTheDocument();
|
||||||
expect(screen.queryByTestId('node-creator-search-bar')).toBeInTheDocument();
|
expect(screen.queryByTestId('node-creator-search-bar')).toBeInTheDocument();
|
||||||
screen.getByText('On app event').click();
|
screen.getByText('On app event').click();
|
||||||
await nextTick();
|
await nextTick();
|
||||||
|
|
|
@ -885,7 +885,7 @@
|
||||||
"nodeCreator.triggerHelperPanel.manualTriggerDisplayName": "Manually",
|
"nodeCreator.triggerHelperPanel.manualTriggerDisplayName": "Manually",
|
||||||
"nodeCreator.triggerHelperPanel.manualTriggerDescription": "Runs the flow on clicking a button in n8n",
|
"nodeCreator.triggerHelperPanel.manualTriggerDescription": "Runs the flow on clicking a button in n8n",
|
||||||
"nodeCreator.triggerHelperPanel.whatHappensNext": "What happens next?",
|
"nodeCreator.triggerHelperPanel.whatHappensNext": "What happens next?",
|
||||||
"nodeCreator.triggerHelperPanel.selectATrigger": "Select a trigger",
|
"nodeCreator.triggerHelperPanel.selectATrigger": "What triggers this workflow?",
|
||||||
"nodeCreator.triggerHelperPanel.selectATriggerDescription": "A trigger is a step that starts your workflow",
|
"nodeCreator.triggerHelperPanel.selectATriggerDescription": "A trigger is a step that starts your workflow",
|
||||||
"nodeCreator.triggerHelperPanel.workflowTriggerDisplayName": "When called by another workflow",
|
"nodeCreator.triggerHelperPanel.workflowTriggerDisplayName": "When called by another workflow",
|
||||||
"nodeCreator.triggerHelperPanel.workflowTriggerDescription": "Runs the flow when called by the Execute Workflow node from a different workflow",
|
"nodeCreator.triggerHelperPanel.workflowTriggerDescription": "Runs the flow when called by the Execute Workflow node from a different workflow",
|
||||||
|
|
Loading…
Reference in a new issue