Split anonymous access e2e tests into separate files

This commit is contained in:
Sebastian Sdorra
2020-08-12 12:13:23 +02:00
parent 6fbb3b9d53
commit 752745868a
9 changed files with 149 additions and 78 deletions

View File

@@ -34,7 +34,7 @@ export const createAttributesForTesting = (testId?: string) => {
};
const normalizeTestId = (testId: string) => {
let id = testId;
let id = testId.toLowerCase();
while (id.includes(" ")) {
id = id.replace(" ", "-");
}