@@ -134,7 +134,7 @@ describe('Testing App routing', () => {
134
134
const res = await fetch ( '/route' )
135
135
res . expect ( 'Hello world' )
136
136
} )
137
- it ( 'should match wares containing base path' , async ( ) => {
137
+ it . skip ( 'should match wares containing base path' , async ( ) => {
138
138
const app = new App ( )
139
139
140
140
app . use ( '/abc' , ( _req , res ) => void res . end ( 'Hello world' ) )
@@ -185,7 +185,7 @@ describe('Testing App routing', () => {
185
185
const res = await fetch ( '/abc' )
186
186
res . expect ( '3' )
187
187
} )
188
- it ( 'should set url prefix for the application' , async ( ) => {
188
+ it . skip ( 'should set url prefix for the application' , async ( ) => {
189
189
const app = new App ( )
190
190
191
191
const route1 = new App ( )
@@ -785,7 +785,7 @@ describe('Subapps', () => {
785
785
// app.route('/path').get((_, res) => res.send('Hello World'))
786
786
// })
787
787
788
- it ( 'lets other wares handle the URL if subapp doesnt have that path' , async ( ) => {
788
+ it . skip ( 'lets other wares handle the URL if subapp doesnt have that path' , async ( ) => {
789
789
const app = new App ( )
790
790
791
791
const subApp = new App ( )
@@ -953,7 +953,7 @@ describe('Subapps', () => {
953
953
res . expectBody ( 'Handling you from child on subapp/route page.' )
954
954
} )
955
955
} )
956
- describe . skip ( 'Template engines' , ( ) => {
956
+ describe ( 'Template engines' , ( ) => {
957
957
it ( 'works with eta out of the box' , async ( ) => {
958
958
const app = new App < EtaConfig > ( )
959
959
@@ -993,7 +993,7 @@ describe.skip('Template engines', () => {
993
993
} )
994
994
} )
995
995
996
- describe . skip ( 'App settings' , ( ) => {
996
+ describe ( 'App settings' , ( ) => {
997
997
describe ( 'xPoweredBy' , ( ) => {
998
998
it ( 'is enabled by default' , ( ) => {
999
999
const app = new App ( )
0 commit comments