Skip to content

Commit

Permalink
correct the test
Browse files Browse the repository at this point in the history
  • Loading branch information
yusukebe committed Jan 10, 2025
1 parent 54595b0 commit 743d96b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test-integration/apps.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => {
Expand Down

0 comments on commit 743d96b

Please sign in to comment.