diff --git a/test/deploy.spec.ts b/test/deploy.spec.ts index 4239f45..41ad0eb 100644 --- a/test/deploy.spec.ts +++ b/test/deploy.spec.ts @@ -89,13 +89,11 @@ describe('deploy', () => { const updated = CloudFormationStack.createStack(options); const resp = await updated.deploy(); - const updatedStack = await updated.getStack(); // then expect(resp.stackId).toContain(stackName); expect(resp.status).toBe('200'); - expect(updatedStack?.StackStatus).toBe('UPDATE_COMPLETE'); expect(updatedStack?.Parameters).toEqual(options.stack.parameterOverrides); }, 500000); });