Skip to content

Commit

Permalink
Remove unnecessary extra test expectation
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengeller committed Feb 16, 2021
1 parent cf0fde3 commit 7719c76
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/constructs/core/stack.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,6 @@ describe("The GuStack construct", () => {
it("requires passing the stack value as props", function () {
const stack = simpleGuStackForTesting({ stack: "some-stack" });
expect(stack.stack).toEqual("some-stack");

const json = SynthUtils.toCloudFormation(stack) as SynthedStack;

expect(json.Parameters).toEqual({
Stage: {
Type: "String",
Description: "Stage name",
AllowedValues: Stages,
Default: Stage.CODE,
},
});
});

it("should have a stage parameter", () => {
Expand Down

0 comments on commit 7719c76

Please sign in to comment.