Skip to content

Commit a76b042

Browse files
authored
Fix typo
1 parent 342543e commit a76b042

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/patterns/unit-test.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { describe, expect, it } from 'bun:test'
3030
import { Elysia } from 'elysia'
3131

3232
describe('Elysia', () => {
33-
it('return a response', async () => {
33+
it('returns a response', async () => {
3434
const app = new Elysia().get('/', () => 'hi')
3535

3636
const response = await app
@@ -74,7 +74,7 @@ const app = new Elysia().get('/hello', 'hi')
7474
const api = treaty(app)
7575

7676
describe('Elysia', () => {
77-
it('return a response', async () => {
77+
it('returns a response', async () => {
7878
const { data, error } = await api.hello.get()
7979

8080
expect(data).toBe('hi')

0 commit comments

Comments
 (0)