Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Giehl <stefan@matomo.org>2020-11-02 22:13:27 +0300
committerGitHub <noreply@github.com>2020-11-02 22:13:27 +0300
commitf8cdf6ad9738a05a450b4f7cfc863a532b88b9be (patch)
tree47014d472e21e7674dbcbd49be88f4f0bfd78320 /node_modules/angular-mocks/angular-mocks.js
parentfd1d68cbaac5c8a44aaab335700eba8f3723c754 (diff)
updates node modules (#16651)
Diffstat (limited to 'node_modules/angular-mocks/angular-mocks.js')
-rw-r--r--node_modules/angular-mocks/angular-mocks.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/node_modules/angular-mocks/angular-mocks.js b/node_modules/angular-mocks/angular-mocks.js
index c6e637da8d..a961d45a9d 100644
--- a/node_modules/angular-mocks/angular-mocks.js
+++ b/node_modules/angular-mocks/angular-mocks.js
@@ -1,6 +1,6 @@
/**
- * @license AngularJS v1.8.0
- * (c) 2010-2020 Google, Inc. http://angularjs.org
+ * @license AngularJS v1.8.2
+ * (c) 2010-2020 Google LLC. http://angularjs.org
* License: MIT
*/
(function(window, angular) {
@@ -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.8.0' })
+ .info({ angularVersion: '1.8.2' })
.config(['$provide', function($provide) {
@@ -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.8.0' });
+}]).info({ angularVersion: '1.8.2' });
/**
* @ngdoc module
@@ -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.8.0' });
+}]).info({ angularVersion: '1.8.2' });
/**
* @ngdoc service