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.
session-desktop/ts/shared/data_test_id.ts

9 lines
245 B
TypeScript

/**
* 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(' ', '-');
}