We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 95053d5 + 2c89f7c commit 7f4cb9dCopy full SHA for 7f4cb9d
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@lambdatest/smartui-cli",
3
- "version": "4.1.7-beta.0",
+ "version": "4.1.7-beta.1",
4
"description": "A command line interface (CLI) to run SmartUI tests on LambdaTest",
5
"files": [
6
"dist/**/*"
src/lib/httpClient.ts
@@ -88,7 +88,7 @@ export default class httpClient {
88
89
async request(config: AxiosRequestConfig, log: Logger): Promise<Record<string, any>> {
90
log.debug(`http request: ${config.method} ${config.url}`);
91
- if (config && config.data && !config.data.name) {
+ if (config && config.data && !config.data.name && !config.data.snapshot) {
92
log.debug(config.data);
93
}
94
if (config && config.data && config.data.snapshotUuid) {
0 commit comments