Skip to content

Commit

Permalink
Fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhacks committed Oct 3, 2023
1 parent d931ea3 commit 8e634bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deno/lib/__tests__/string.test.ts
Expand Up @@ -146,7 +146,7 @@ test("email validations", () => {
`gbacher0@[IPv6:bc37:4d3f:5048:2e26:37cc:248e:df8e:2f7f:af]`,
`invalid@[IPv6:5348:4ed3:5d38:67fb:e9b:acd2:c13:192.168.256.1]`,
`test@.com`,
`aaaaaaaaaaaaaaalongemailthatcausesregexDoSvulnerability@test.c`
`aaaaaaaaaaaaaaalongemailthatcausesregexDoSvulnerability@test.c`,
];
const emailSchema = z.string().email();

Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/readonly.test.ts
@@ -1,5 +1,5 @@
// @ts-ignore TS6133
import { expect,test } from "@jest/globals";
import { expect, test } from "@jest/globals";

import { util } from "../helpers/util";
import * as z from "../index";
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/string.test.ts
Expand Up @@ -145,7 +145,7 @@ test("email validations", () => {
`gbacher0@[IPv6:bc37:4d3f:5048:2e26:37cc:248e:df8e:2f7f:af]`,
`invalid@[IPv6:5348:4ed3:5d38:67fb:e9b:acd2:c13:192.168.256.1]`,
`test@.com`,
`aaaaaaaaaaaaaaalongemailthatcausesregexDoSvulnerability@test.c`
`aaaaaaaaaaaaaaalongemailthatcausesregexDoSvulnerability@test.c`,
];
const emailSchema = z.string().email();

Expand Down

0 comments on commit 8e634bd

Please sign in to comment.