@lambdatest/smartui-cli 4.1.26 → 4.1.27
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/dist/index.cjs +3 -4
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1824,8 +1824,7 @@ var server_default = (ctx) => __async(void 0, null, function* () {
|
|
|
1824
1824
|
let resp = yield ctx.client.getS3PreSignedURL(ctx);
|
|
1825
1825
|
yield ctx.client.uploadLogs(ctx, resp.data.url);
|
|
1826
1826
|
} else {
|
|
1827
|
-
ctx.log.debug(`
|
|
1828
|
-
let resp = ctx.client.sendCliLogsToLSRS(ctx);
|
|
1827
|
+
ctx.log.debug(`Skipping upload of CLI logs as useLambdaInternal is set`);
|
|
1829
1828
|
}
|
|
1830
1829
|
if (pingIntervalId !== null) {
|
|
1831
1830
|
clearInterval(pingIntervalId);
|
|
@@ -2077,7 +2076,7 @@ var authExec_default = (ctx) => {
|
|
|
2077
2076
|
};
|
|
2078
2077
|
|
|
2079
2078
|
// package.json
|
|
2080
|
-
var version = "4.1.
|
|
2079
|
+
var version = "4.1.27";
|
|
2081
2080
|
var package_default = {
|
|
2082
2081
|
name: "@lambdatest/smartui-cli",
|
|
2083
2082
|
version,
|
|
@@ -4117,7 +4116,7 @@ var Queue = class {
|
|
|
4117
4116
|
}
|
|
4118
4117
|
if (!this.ctx.config.delayedUpload && snapshot && snapshot.name && this.snapshotNames.includes(snapshot.name) && !this.ctx.config.allowDuplicateSnapshotNames) {
|
|
4119
4118
|
drop = true;
|
|
4120
|
-
this.ctx.log.info(`Skipping duplicate SmartUI snapshot '${snapshot.name}'. To capture duplicate screenshots, please set the 'delayedUpload' configuration as true in your config file.`);
|
|
4119
|
+
this.ctx.log.info(`Skipping duplicate SmartUI snapshot '${snapshot.name}'. To capture duplicate screenshots, please set the 'allowDuplicateSnapshotNames' or 'delayedUpload' configuration as true in your config file.`);
|
|
4121
4120
|
}
|
|
4122
4121
|
if (this.ctx.config.delayedUpload && snapshot && snapshot.name && this.snapshotNames.includes(snapshot.name)) {
|
|
4123
4122
|
drop = this.filterExistingVariants(snapshot, this.ctx.config);
|