@@ -425,7 +425,7 @@ const testCases: TestsCase[] = [
425425 name : 'Text page' ,
426426 url : 'text-page.md' ,
427427 screenshot : false ,
428- run : async ( _page , response ) => {
428+ run : ( _page , response ) => {
429429 expect ( response ?. status ( ) ) . toBe ( 200 ) ;
430430 expect ( response ?. headers ( ) [ 'content-type' ] ) . toContain ( 'text/markdown' ) ;
431431 } ,
@@ -441,7 +441,7 @@ const testCases: TestsCase[] = [
441441 name : 'llms.txt' ,
442442 url : 'llms.txt' ,
443443 screenshot : false ,
444- run : async ( _page , response ) => {
444+ run : ( _page , response ) => {
445445 expect ( response ?. status ( ) ) . toBe ( 200 ) ;
446446 expect ( response ?. headers ( ) [ 'content-type' ] ) . toContain ( 'text/markdown' ) ;
447447 } ,
@@ -457,7 +457,7 @@ const testCases: TestsCase[] = [
457457 name : 'llms-full.txt' ,
458458 url : 'llms-full.txt' ,
459459 screenshot : false ,
460- run : async ( _page , response ) => {
460+ run : ( _page , response ) => {
461461 expect ( response ?. status ( ) ) . toBe ( 200 ) ;
462462 expect ( response ?. headers ( ) [ 'content-type' ] ) . toContain ( 'text/markdown' ) ;
463463 } ,
@@ -473,7 +473,7 @@ const testCases: TestsCase[] = [
473473 name : 'blocks.md' ,
474474 url : 'blocks.md' ,
475475 screenshot : false ,
476- run : async ( _page , response ) => {
476+ run : ( _page , response ) => {
477477 expect ( response ?. status ( ) ) . toBe ( 200 ) ;
478478 expect ( response ?. headers ( ) [ 'content-type' ] ) . toContain ( 'text/markdown' ) ;
479479 } ,
0 commit comments