@mablhq/mabl-cli 1.55.4 → 1.56.6
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 +5 -2
- 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/commands/tests/tests_cmds/import.js +1 -1
- package/core/execution/ApiTestUtils.js +2 -2
- package/coreWebVitals/index.js +0 -8
- package/domUtil/index.js +1 -1
- package/execution/index.js +1 -1
- package/execution/index.js.LICENSE.txt +18 -0
- package/mablApi/index.js +1 -1
- package/mablscriptFind/index.js +1 -1
- package/package.json +11 -5
- 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
- package/util/analytics.js +10 -0
|
@@ -60,6 +60,22 @@
|
|
|
60
60
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
61
61
|
*/
|
|
62
62
|
|
|
63
|
+
/*!
|
|
64
|
+
* Copyright 2019 Google Inc. All Rights Reserved.
|
|
65
|
+
*
|
|
66
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
67
|
+
* you may not use this file except in compliance with the License.
|
|
68
|
+
* You may obtain a copy of the License at
|
|
69
|
+
*
|
|
70
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
71
|
+
*
|
|
72
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
73
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
74
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
75
|
+
* See the License for the specific language governing permissions and
|
|
76
|
+
* limitations under the License.
|
|
77
|
+
*/
|
|
78
|
+
|
|
63
79
|
/*!
|
|
64
80
|
* Determine if an object is a Buffer
|
|
65
81
|
*
|
|
@@ -129,6 +145,8 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
129
145
|
PERFORMANCE OF THIS SOFTWARE.
|
|
130
146
|
***************************************************************************** */
|
|
131
147
|
|
|
148
|
+
/*! THIS FILE IS AUTO-GENERATED */
|
|
149
|
+
|
|
132
150
|
/*! axe v4.3.3
|
|
133
151
|
* Copyright (c) 2021 Deque Systems, Inc.
|
|
134
152
|
*
|