diff --git a/aio/tests/deployment/unit/testFirebaseRedirection.spec.ts b/aio/tests/deployment/unit/testFirebaseRedirection.spec.ts index 9ac74675f2..e301c5c606 100644 --- a/aio/tests/deployment/unit/testFirebaseRedirection.spec.ts +++ b/aio/tests/deployment/unit/testFirebaseRedirection.spec.ts @@ -24,12 +24,12 @@ describe('firebase.json redirect config', () => { } }); }); + }); - describe('destinations', () => { - loadRedirects().forEach(redirect => { - it('should match pattern "^(https?:/)?/.*"', () => { - expect(redirect.destination).toMatch(/^(https?:\/)?\/.*/); - }); + describe('destinations', () => { + loadRedirects().forEach(redirect => { + it('should match pattern "^(https?:/)?/.*"', () => { + expect(redirect.destination).toMatch(/^(https?:\/)?\/.*/); }); }); });