Skip to content

Commit

Permalink
Update RawExample.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Jun 21, 2022
1 parent 70d30a0 commit 4992737
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion website/src/components/RawExample.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ test("username", "Username is required", () => {
});
test("username", "Username must be at least 3 chars", () => {
enforce(data.username).longerThanOrEquals(3)
enforce(data.username).longerThanOrEquals(3);
});
test('username', 'Username already taken', async () => {
await doesUserExist(data.username);
});
`}</CodeBlock>
</section>
Expand Down

1 comment on commit 4992737

@vercel
Copy link

@vercel vercel bot commented on 4992737 Jun 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vest-next – ./website

vest-next-ealush.vercel.app
vest-next.vercel.app
vest-website.vercel.app
vest-next-git-latest-ealush.vercel.app

Please sign in to comment.