You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
core.info(`Deployment started. Watch this deployment's progress in the Amazon ECS console: https://console.aws.amazon.com/ecs/home?region=${aws.config.region}#/clusters/${clusterName}/services/${service}/events`);
core.info(`Deployment started. Watch this deployment's progress in the AWS CodeDeploy console: https://console.aws.amazon.com/codesuite/codedeploy/deployments/${createDeployResponse.deploymentId}?region=${aws.config.region}`);
@@ -158,6 +161,7 @@ describe('Deploy to ECS', () => {
158
161
taskDefinition: 'task:def:arn'
159
162
});
160
163
expect(mockEcsWaiter).toHaveBeenCalledTimes(0);
164
+
expect(core.info).toBeCalledWith("Deployment started. Watch this deployment's progress in the Amazon ECS console: https://console.aws.amazon.com/ecs/home?region=fake-region#/clusters/cluster-789/services/service-456/events");
161
165
});
162
166
163
167
test('cleans null keys out of the task definition contents',async()=>{
@@ -299,6 +303,8 @@ describe('Deploy to ECS', () => {
expect(core.info).toBeCalledWith("Deployment started. Watch this deployment's progress in the AWS CodeDeploy console: https://console.aws.amazon.com/codesuite/codedeploy/deployments/deployment-1?region=fake-region");
302
308
});
303
309
304
310
test('registers the task definition contents and creates a CodeDeploy deployment, waits for 1 hour + deployment group\'s wait time',async()=>{
@@ -807,13 +813,16 @@ describe('Deploy to ECS', () => {
0 commit comments