Skip to content

Commit

Permalink
Merge branch 'main' into sortable
Browse files Browse the repository at this point in the history
  • Loading branch information
waterplea authored Oct 8, 2024
2 parents a440e21 + 48048de commit ba1b3c0
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 ba1b3c0

Please sign in to comment.