@mablhq/mabl-cli 1.55.2 → 1.56.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/featureSet.js +4 -0
- package/api/mablApiClient.js +33 -42
- package/browserLauncher/playwrightBrowserLauncher/chromium/chromiumPageDelegate.js +6 -0
- package/browserLauncher/playwrightBrowserLauncher/nonChromium/nonChromiumAbstractPageDelegate.js +3 -0
- package/browserLauncher/playwrightBrowserLauncher/playwrightFrame.js +16 -9
- package/browserLauncher/playwrightBrowserLauncher/playwrightPage.js +3 -0
- package/browserTestMonitoring/cloudMonitoringPerformanceMetrics.js +277 -0
- package/browserTestMonitoring/distributions.js +44 -0
- package/browserTestMonitoring/metricsRecorder.js +112 -0
- package/browserTestMonitoring/types.js +8 -0
- package/coreWebVitals/index.js +0 -8
- package/domUtil/index.js +1 -1
- package/execution/index.js +1 -1
- package/execution/index.js.LICENSE.txt +27 -1
- package/mablApi/index.js +1 -1
- package/mablscriptFind/index.js +1 -1
- package/mablscriptFind/index.js.LICENSE.txt +8 -0
- package/package.json +11 -5
- package/proxy/index.js +1 -1
- package/resources/coreWebVitals.js +1 -1
- package/resources/mablFind.js +1 -1
- package/util/CloudStorageWriter.js +45 -0
- package/util/IdentifierUtil.js +57 -0
- package/util/TestOutputWriter.js +67 -0
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* decimal.js v10.4.3
|
|
3
|
+
* An arbitrary-precision Decimal type for JavaScript.
|
|
4
|
+
* https://github.com/MikeMcl/decimal.js
|
|
5
|
+
* Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
|
|
6
|
+
* MIT Licence
|
|
7
|
+
*/
|
|
8
|
+
|
|
1
9
|
/*!
|
|
2
10
|
* Copyright (c) 2015, Salesforce.com, Inc.
|
|
3
11
|
* All rights reserved.
|
|
@@ -60,6 +68,22 @@
|
|
|
60
68
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
61
69
|
*/
|
|
62
70
|
|
|
71
|
+
/*!
|
|
72
|
+
* Copyright 2019 Google Inc. All Rights Reserved.
|
|
73
|
+
*
|
|
74
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
75
|
+
* you may not use this file except in compliance with the License.
|
|
76
|
+
* You may obtain a copy of the License at
|
|
77
|
+
*
|
|
78
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
79
|
+
*
|
|
80
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
81
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
82
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
83
|
+
* See the License for the specific language governing permissions and
|
|
84
|
+
* limitations under the License.
|
|
85
|
+
*/
|
|
86
|
+
|
|
63
87
|
/*!
|
|
64
88
|
* Determine if an object is a Buffer
|
|
65
89
|
*
|
|
@@ -129,6 +153,8 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
129
153
|
PERFORMANCE OF THIS SOFTWARE.
|
|
130
154
|
***************************************************************************** */
|
|
131
155
|
|
|
156
|
+
/*! THIS FILE IS AUTO-GENERATED */
|
|
157
|
+
|
|
132
158
|
/*! axe v4.3.3
|
|
133
159
|
* Copyright (c) 2021 Deque Systems, Inc.
|
|
134
160
|
*
|
|
@@ -187,7 +213,7 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
187
213
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
188
214
|
**/
|
|
189
215
|
|
|
190
|
-
/** @license URI.js v4.
|
|
216
|
+
/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
|
|
191
217
|
|
|
192
218
|
//! moment.js
|
|
193
219
|
|