File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
packages/cli-v3/src/commands Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -441,6 +441,13 @@ async function _deployCommand(dir: string, options: DeployCommandOptions) {
441
441
`${ authorization . dashboardUrl } /projects/v3/${ resolvedConfig . config . project } /deployments/${ finishedDeployment . shortCode } `
442
442
) ;
443
443
444
+ const testLink = cliLink (
445
+ "Test tasks" ,
446
+ `${ authorization . dashboardUrl } /projects/v3/${ resolvedConfig . config . project } /test?environment=${
447
+ options . env === "prod" ? "prod" : "stg"
448
+ } `
449
+ ) ;
450
+
444
451
switch ( finishedDeployment . status ) {
445
452
case "DEPLOYED" : {
446
453
if ( warnings . warnings . length > 0 ) {
@@ -461,7 +468,7 @@ async function _deployCommand(dir: string, options: DeployCommandOptions) {
461
468
outro (
462
469
`Version ${ version } deployed with ${ taskCount } detected task${
463
470
taskCount === 1 ? "" : "s"
464
- } ${ deploymentLink } `
471
+ } | ${ deploymentLink } | ${ testLink } `
465
472
) ;
466
473
}
467
474
You can’t perform that action at this time.
0 commit comments