Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit 2bc6b0c

Browse files
author
v1rtl
committed
uncomment tests
1 parent 1f4347a commit 2bc6b0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/core/app.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ describe('Testing App routing', () => {
125125
const res = await fetch('/route')
126126
res.expect('Hello world')
127127
})
128-
it.skip('should match wares containing base path', async () => {
128+
it('should match wares containing base path', async () => {
129129
const app = new App()
130130

131131
app.use('/abc', (_req, res) => void res.end('Hello world'))
@@ -175,7 +175,7 @@ describe('Testing App routing', () => {
175175
const res = await fetch('/abc')
176176
res.expect('3')
177177
})
178-
it.skip('should set url prefix for the application', async () => {
178+
it('should set url prefix for the application', async () => {
179179
const app = new App()
180180

181181
const route1 = new App()
@@ -746,7 +746,7 @@ describe('Subapps', () => {
746746
)
747747
})
748748

749-
it.skip('lets other wares handle the URL if subapp doesnt have that path', async () => {
749+
it('lets other wares handle the URL if subapp doesnt have that path', async () => {
750750
const app = new App()
751751

752752
const subApp = new App()

0 commit comments

Comments
 (0)