Skip to content

Commit

Permalink
Failing test case for firebase/firebase-functions#926
Browse files Browse the repository at this point in the history
  • Loading branch information
rhodgkins committed Aug 13, 2021
1 parent db5f2d3 commit 3648691
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions spec/providers/database.spec.ts
Expand Up @@ -33,6 +33,14 @@ describe('providers/database', () => {
expect(snapshot.ref.key).to.equal('path');
});

it('should allow null child value in makeDataSnapshot', async () => {
const snapshot = makeDataSnapshot({ foo: null }, 'path');

expect(snapshot.exists()).be.false;
expect(snapshot.val()).to.deep.equal(null);
expect(snapshot.ref.key).to.equal('path');
});

it('should use the default test apps databaseURL if no instance is specified in makeDataSnapshot', async () => {
const snapshot = makeDataSnapshot(null, 'path', null);

Expand Down

0 comments on commit 3648691

Please sign in to comment.