@devicecloud.dev/dcd 0.0.6 → 0.0.7
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/commands/cloud.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/commands/cloud.js
CHANGED
|
@@ -206,7 +206,7 @@ class Cloud extends core_1.Command {
|
|
|
206
206
|
.map((r) => r.test_file_name)
|
|
207
207
|
.join(', ')}\n`);
|
|
208
208
|
(0, cli_ux_1.info)('Run triggered, you can access the results at:');
|
|
209
|
-
const url = `https://console.devicecloud.dev/results
|
|
209
|
+
const url = `https://console.devicecloud.dev/results?upload=${results[0].test_upload_id}&result=${results[0].id}`;
|
|
210
210
|
core_1.ux.url(url, url);
|
|
211
211
|
if (async) {
|
|
212
212
|
(0, cli_ux_1.info)('Not waiting for results as async flag is set to true');
|
package/oclif.manifest.json
CHANGED