From f0101280763c825ce831c0024f81bb28099a4feb Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Wed, 14 Feb 2024 16:38:00 -0800 Subject: [PATCH] Remove test.only --- deno/lib/README.md | 12 ++++++++++++ deno/lib/__tests__/error.test.ts | 2 +- src/__tests__/error.test.ts | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/deno/lib/README.md b/deno/lib/README.md index 0ae24bcaf..dbb150e1e 100644 --- a/deno/lib/README.md +++ b/deno/lib/README.md @@ -502,6 +502,18 @@ Sponsorship at any level is appreciated and encouraged. For individual developer
+ + + + Remotion logo + +
+ Remotion +
+ remotion.dev +
+ + ### Ecosystem diff --git a/deno/lib/__tests__/error.test.ts b/deno/lib/__tests__/error.test.ts index 28d1772fa..617379b30 100644 --- a/deno/lib/__tests__/error.test.ts +++ b/deno/lib/__tests__/error.test.ts @@ -516,7 +516,7 @@ test("literal bigint default error message", () => { } }); -test.only("when the message is falsy, it is used as is provided", () => { +test("when the message is falsy, it is used as is provided", () => { const schema = z.string().max(1, { message: "" }); const result = schema.safeParse("asdf"); expect(result.success).toEqual(false); diff --git a/src/__tests__/error.test.ts b/src/__tests__/error.test.ts index 971282247..69acd5575 100644 --- a/src/__tests__/error.test.ts +++ b/src/__tests__/error.test.ts @@ -515,7 +515,7 @@ test("literal bigint default error message", () => { } }); -test.only("when the message is falsy, it is used as is provided", () => { +test("when the message is falsy, it is used as is provided", () => { const schema = z.string().max(1, { message: "" }); const result = schema.safeParse("asdf"); expect(result.success).toEqual(false);