Skip to content

Commit

Permalink
chore(demo-cypress): delete forbidden character : from snapshot nam…
Browse files Browse the repository at this point in the history
…es (#9385)
  • Loading branch information
nsbarsukov authored Oct 8, 2024
1 parent e051888 commit 48048de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/demo-cypress/src/tests/textfield.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe('Textfield', () => {

cy.get('input[tuiTextfield]').focus();
cy.get('tui-textfield').compareSnapshot(
`[filler]-initial-value_${initialValue}`,
`[filler]-initial-value_${initialValue.replaceAll(':', '-')}`,
);
});
});
Expand All @@ -64,7 +64,7 @@ describe('Textfield', () => {
cy.get('input[tuiTextfield]').type(value);

cy.get('tui-textfield').compareSnapshot(
`[filler]-user-types_${value}`,
`[filler]-user-types_${value.replaceAll(':', '-')}`,
);
});
});
Expand Down

0 comments on commit 48048de

Please sign in to comment.