Skip to content

Commit

Permalink
Release v2.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
soumak77 committed Sep 26, 2018
1 parent 159b011 commit 8fe31b9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firebase-mock",
"version": "2.2.9",
"version": "2.2.10",
"homepage": "https://github.com/soumak77/firebase-mock",
"authors": [
"Kato"
Expand Down
3 changes: 2 additions & 1 deletion browser/firebasemock.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** firebase-mock - v2.2.9
/** firebase-mock - v2.2.10
https://github.com/soumak77/firebase-mock
* Copyright (c) 2016 Brian Soumakian
* License: MIT */
Expand Down Expand Up @@ -50319,6 +50319,7 @@ MockFirebase.prototype.toString = function () {
};

MockFirebase.prototype.child = function (childPath) {
if (childPath === '/') return this;
assert(childPath, 'A child path is required');
var parts = _.compact(childPath.split('/'));
var childKey = parts.shift();
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firebase-mock",
"version": "2.2.9",
"version": "2.2.10",
"description": "Firebase mock library for writing unit tests",
"main": "./src",
"scripts": {
Expand Down

0 comments on commit 8fe31b9

Please sign in to comment.