File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/e2e/modified-tests/middleware-custom-matchers/test Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ describe('Middleware custom matchers', () => {
21
21
afterAll ( ( ) => next . destroy ( ) )
22
22
23
23
const runTests = ( ) => {
24
- usuallySkip ( 'should match missing header correctly' , async ( ) => {
24
+ it ( 'should match missing header correctly' , async ( ) => {
25
25
const res = await fetchViaHTTP ( next . url , '/missing-match-1' )
26
26
expect ( res . headers . get ( 'x-from-middleware' ) ) . toBeDefined ( )
27
27
@@ -33,7 +33,7 @@ describe('Middleware custom matchers', () => {
33
33
expect ( res2 . headers . get ( 'x-from-middleware' ) ) . toBeFalsy ( )
34
34
} )
35
35
36
- usuallySkip ( 'should match missing query correctly' , async ( ) => {
36
+ it ( 'should match missing query correctly' , async ( ) => {
37
37
const res = await fetchViaHTTP ( next . url , '/missing-match-2' )
38
38
expect ( res . headers . get ( 'x-from-middleware' ) ) . toBeDefined ( )
39
39
You can’t perform that action at this time.
0 commit comments