Skip to content

Commit

Permalink
refactor: remove expect
Browse files Browse the repository at this point in the history
  • Loading branch information
jbw committed Aug 23, 2023
1 parent c2998cb commit a872e6b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/deploy.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});

0 comments on commit a872e6b

Please sign in to comment.