mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(editor): Fix issue with case insensitive tags (#9071)
This commit is contained in:
@@ -14,7 +14,7 @@ describe('Workflow tags', () => {
|
||||
wf.actions.addTags(TEST_TAGS.slice(0, 2));
|
||||
wf.getters.tagPills().should('have.length', 2);
|
||||
wf.getters.nthTagPill(1).click();
|
||||
wf.actions.addTags(TEST_TAGS[2]);
|
||||
wf.actions.addTags(TEST_TAGS[1].toUpperCase());
|
||||
wf.getters.tagPills().should('have.length', 3);
|
||||
wf.getters.isWorkflowSaved();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user