We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c4ecb7 commit 0aaf837Copy full SHA for 0aaf837
packages/util/test/defaults.test.ts
@@ -43,8 +43,9 @@ describe('getDefaultEmulatorHost', () => {
43
after(() => {
44
restore();
45
});
46
- it('returns undefined', () => {
+ it('returns undefined and does not throw', () => {
47
expect(getDefaultEmulatorHost('firestore')).to.be.undefined;
48
+ expect(getDefaultEmulatorHost('firestore')).to.not.throw;
49
50
51
@@ -58,8 +59,9 @@ describe('getDefaultEmulatorHost', () => {
58
59
60
61
- it('returns undefined and calls console.info', () => {
62
63
64
65
66
67
0 commit comments