docs(editor): New Nodes Panel title for triggers (#7314)

Github issue / Community forum post (link here to close automatically):
This commit is contained in:
Giulio Andreini
2023-10-04 15:27:40 +02:00
committed by GitHub
parent 0adc533719
commit 942d0b91fc
3 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ describe('Node Creator', () => {
it('should open node creator on trigger tab if no trigger is on canvas', () => {
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', () => {
@@ -73,7 +73,7 @@ describe('Node Creator', () => {
nodeCreatorFeature.getters.nodeCreator().contains('What happens next?').should('be.visible');
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').click();
nodeCreatorFeature.getters.nodeCreator().contains('What happens next?').should('be.visible');