[ACS-5678] create folder from template tests (#3456)

* [ACS-5678] create folder from template tests

* taking out only flag

* fixes for linter, import, method name and locator

* fix import and utils strings
This commit is contained in:
Adam Zakrzewski
2023-10-02 17:03:29 +02:00
committed by GitHub
parent 740b9b3579
commit 33c50bdd68
17 changed files with 665 additions and 13 deletions

View File

@@ -25,6 +25,10 @@
const crypto = require('crypto');
export class Utils {
static string257Long = 'x'.repeat(257);
static string513Long = 'x'.repeat(513);
static random(): string {
return crypto.getRandomValues(new Uint32Array(1))[0].toString(36).substring(0, 5).toLowerCase();
}