Skip to content

Commit

Permalink
fix: Revert regression introduced in #1257 (#1277)
Browse files Browse the repository at this point in the history
  • Loading branch information
hiranya911 authored May 18, 2021
1 parent e7155ea commit fd23ad0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/storage/storage.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ describe('Storage', () => {
});
});

describe.only('Emulator mode', () => {
describe('Emulator mode', () => {
const VALID_EMULATOR_HOST = 'localhost:9199';
const INVALID_EMULATOR_HOST = 'https://localhost:9199';

Expand All @@ -136,7 +136,7 @@ describe('Storage', () => {
expect(() => new Storage(mockApp)).to.throw(
'FIREBASE_STORAGE_EMULATOR_HOST should not contain a protocol');
});

after(() => {
delete process.env.STORAGE_EMULATOR_HOST;
delete process.env.FIREBASE_STORAGE_EMULATOR_HOST;
Expand Down

0 comments on commit fd23ad0

Please sign in to comment.