Skip to content

Commit 5de27e1

Browse files
committed
fix: removed skip from missing matcher tests
1 parent 0d888fb commit 5de27e1

File tree

1 file changed

+2
-2
lines changed
  • test/e2e/modified-tests/middleware-custom-matchers/test

1 file changed

+2
-2
lines changed

test/e2e/modified-tests/middleware-custom-matchers/test/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ describe('Middleware custom matchers', () => {
2121
afterAll(() => next.destroy())
2222

2323
const runTests = () => {
24-
usuallySkip('should match missing header correctly', async () => {
24+
it('should match missing header correctly', async () => {
2525
const res = await fetchViaHTTP(next.url, '/missing-match-1')
2626
expect(res.headers.get('x-from-middleware')).toBeDefined()
2727

@@ -33,7 +33,7 @@ describe('Middleware custom matchers', () => {
3333
expect(res2.headers.get('x-from-middleware')).toBeFalsy()
3434
})
3535

36-
usuallySkip('should match missing query correctly', async () => {
36+
it('should match missing query correctly', async () => {
3737
const res = await fetchViaHTTP(next.url, '/missing-match-2')
3838
expect(res.headers.get('x-from-middleware')).toBeDefined()
3939

0 commit comments

Comments
 (0)