From 743d96b4ac31e1d5c66540751ef30fc6b343fe6b Mon Sep 17 00:00:00 2001 From: Yusuke Wada Date: Fri, 10 Jan 2025 17:41:46 +0900 Subject: [PATCH] correct the test --- test-integration/apps.test.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test-integration/apps.test.ts b/test-integration/apps.test.ts index 049191f..5ad05ae 100644 --- a/test-integration/apps.test.ts +++ b/test-integration/apps.test.ts @@ -96,8 +96,12 @@ describe('Basic', () => { path: '/throw_error', method: 'GET', }, + { + path: '/app/nested', + method: 'GET', + }, ] - expect(app.routes).toHaveLength(46) + expect(app.routes).toHaveLength(48) expect(app.routes).toEqual( expect.arrayContaining( routes.map(({ path, method }) => {