Skip to content

Commit

Permalink
Remove test.only
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhacks committed Feb 15, 2024
1 parent fa90698 commit f010128
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions deno/lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,18 @@ Sponsorship at any level is appreciated and encouraged. For individual developer
<br />
</td>
</tr>
<tr>
<td align="center">
<a href="https://remotion.dev" target="_blank">
<img src="https://avatars.githubusercontent.com/u/85344006" width="100px;" alt="Remotion logo"/>
</a>
<br />
<b>Remotion</b>
<br/>
<a href="https://remotion.dev" target="_blank">remotion.dev</a>
<br />
</td>
</tr>
</table>

### Ecosystem
Expand Down
2 changes: 1 addition & 1 deletion deno/lib/__tests__/error.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/error.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f010128

Please sign in to comment.