Skip to content

Commit 4eaf07f

Browse files
committed
refactor(test): format rand.test.ts
1 parent e02b6b6 commit 4eaf07f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/utils/rand.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ test("Random string", () => {
2121
test("Random string with only uppercase letters", () => {
2222
const str = utils.randString(10, { upper: true, lower: false });
2323
expect(str).toMatch(/^[A-Z]{10}$/);
24-
})
24+
});
2525

2626
test("Random string with all letters", () => {
2727
const str = utils.randString(10, { upper: true });
@@ -41,4 +41,4 @@ test("Random string with custom characters", () => {
4141
test("Random string with only custom characters", () => {
4242
const str = utils.randString(10, { custom: "!@#$", letter: false });
4343
expect(str).toMatch(/^[!@#$]{10}$/);
44-
})
44+
});

0 commit comments

Comments
 (0)