Skip to content
This repository was archived by the owner on Feb 7, 2025. It is now read-only.

Commit 8fe31b9

Browse files
committed
Release v2.2.10
1 parent 159b011 commit 8fe31b9

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firebase-mock",
3-
"version": "2.2.9",
3+
"version": "2.2.10",
44
"homepage": "https://github.com/soumak77/firebase-mock",
55
"authors": [
66
"Kato"

browser/firebasemock.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** firebase-mock - v2.2.9
1+
/** firebase-mock - v2.2.10
22
https://github.com/soumak77/firebase-mock
33
* Copyright (c) 2016 Brian Soumakian
44
* License: MIT */
@@ -50319,6 +50319,7 @@ MockFirebase.prototype.toString = function () {
5031950319
};
5032050320

5032150321
MockFirebase.prototype.child = function (childPath) {
50322+
if (childPath === '/') return this;
5032250323
assert(childPath, 'A child path is required');
5032350324
var parts = _.compact(childPath.split('/'));
5032450325
var childKey = parts.shift();

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firebase-mock",
3-
"version": "2.2.9",
3+
"version": "2.2.10",
44
"description": "Firebase mock library for writing unit tests",
55
"main": "./src",
66
"scripts": {

0 commit comments

Comments
 (0)