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 9, 2022
1 parent 8392bf2 commit 5753334
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions spec/providers/database.spec.ts
Original file line number Diff line number Diff line change
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 5753334

Please sign in to comment.