From 6ccb8e83c9428f8fbb8652e56e61d5c87c9c6673 Mon Sep 17 00:00:00 2001 From: Don Isaac Date: Tue, 18 Mar 2025 10:53:57 -0700 Subject: [PATCH] test: use `describe` instead of nested `it` --- test/validator/params.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/validator/params.test.ts b/test/validator/params.test.ts index 3345ddb7..7d94609e 100644 --- a/test/validator/params.test.ts +++ b/test/validator/params.test.ts @@ -233,7 +233,7 @@ describe('Params Validator', () => { expect(value).toBe('boolean') }) - it('create default value on optional params', () => { + describe('create default value on optional params', () => { it('parse multiple optional params', async () => { const app = new Elysia().get( '/name/:last?/:first?',