Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
v1.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin committed Nov 19, 2019
1 parent 39334f3 commit 4eb32ff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions angular-mocks.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license AngularJS v1.7.8
* @license AngularJS v1.7.9
* (c) 2010-2018 Google, Inc. http://angularjs.org
* License: MIT
*/
Expand Down Expand Up @@ -951,7 +951,7 @@ angular.mock.TzDate.prototype = Date.prototype;
* You need to require the `ngAnimateMock` module in your test suite for instance `beforeEach(module('ngAnimateMock'))`
*/
angular.mock.animate = angular.module('ngAnimateMock', ['ng'])
.info({ angularVersion: '1.7.8' })
.info({ angularVersion: '1.7.9' })

.config(['$provide', function($provide) {

Expand Down Expand Up @@ -2669,7 +2669,7 @@ angular.module('ngMock', ['ng']).provider({
$provide.decorator('$rootScope', angular.mock.$RootScopeDecorator);
$provide.decorator('$controller', createControllerDecorator($compileProvider));
$provide.decorator('$httpBackend', angular.mock.$httpBackendDecorator);
}]).info({ angularVersion: '1.7.8' });
}]).info({ angularVersion: '1.7.9' });

/**
* @ngdoc module
Expand All @@ -2684,7 +2684,7 @@ angular.module('ngMock', ['ng']).provider({
*/
angular.module('ngMockE2E', ['ng']).config(['$provide', function($provide) {
$provide.decorator('$httpBackend', angular.mock.e2e.$httpBackendDecorator);
}]).info({ angularVersion: '1.7.8' });
}]).info({ angularVersion: '1.7.9' });

/**
* @ngdoc service
Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "angular-mocks",
"version": "1.7.8",
"version": "1.7.9",
"license": "MIT",
"main": "./angular-mocks.js",
"ignore": [],
"dependencies": {
"angular": "1.7.8"
"angular": "1.7.9"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-mocks",
"version": "1.7.8",
"version": "1.7.9",
"description": "AngularJS mocks for testing",
"main": "angular-mocks.js",
"scripts": {
Expand Down

0 comments on commit 4eb32ff

Please sign in to comment.