Skip to content

Commit

Permalink
uncomment tests
Browse files Browse the repository at this point in the history
  • Loading branch information
v1rtl committed Aug 21, 2023
1 parent 1f4347a commit 2bc6b0c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/core/app.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ describe('Testing App routing', () => {
const res = await fetch('/route')
res.expect('Hello world')
})
it.skip('should match wares containing base path', async () => {
it('should match wares containing base path', async () => {
const app = new App()

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

const route1 = new App()
Expand Down Expand Up @@ -746,7 +746,7 @@ describe('Subapps', () => {
)
})

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

const subApp = new App()
Expand Down

0 comments on commit 2bc6b0c

Please sign in to comment.