* refactor: use unique names in e2e tests * refactor: version number in tests * refactor: use unique names in e2e tests * refactor: use unique names in e2e tests * refactor: test cleanup * refactor: increase e2e maxWorkers to 8 * refactor: randomNumber -> randomString * chore: add local e2e command
6 lines
110 B
TypeScript
6 lines
110 B
TypeScript
import { v4 as uuidv4 } from "uuid";
|
|
|
|
export function randomString() {
|
|
return uuidv4().replace(/-/g, "");
|
|
}
|