You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* Returns a string with all spaces replaced to '-'.
|
|
* A datatestid cannot have spaces on desktop, so we use this to format them across the app.
|
|
*
|
|
*/
|
|
export function strToDataTestId(input: string) {
|
|
return input.replaceAll(' ', '-');
|
|
}
|