fix(editor): Fix issue with case insensitive tags (#9071)

This commit is contained in:
Ricardo Espinoza
2024-04-05 09:00:18 -04:00
committed by GitHub
parent 4052b6c073
commit caea27dbb5
2 changed files with 3 additions and 5 deletions

View File

@@ -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();
});