We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e02b6b6 commit 4eaf07fCopy full SHA for 4eaf07f
test/unit/utils/rand.test.ts
@@ -21,7 +21,7 @@ test("Random string", () => {
21
test("Random string with only uppercase letters", () => {
22
const str = utils.randString(10, { upper: true, lower: false });
23
expect(str).toMatch(/^[A-Z]{10}$/);
24
-})
+});
25
26
test("Random string with all letters", () => {
27
const str = utils.randString(10, { upper: true });
@@ -41,4 +41,4 @@ test("Random string with custom characters", () => {
41
test("Random string with only custom characters", () => {
42
const str = utils.randString(10, { custom: "!@#$", letter: false });
43
expect(str).toMatch(/^[!@#$]{10}$/);
44
0 commit comments