This repository was archived by the owner on Jul 31, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ( )
You can’t perform that action at this time.
0 commit comments