We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0567ff2 commit 4ad87f2Copy full SHA for 4ad87f2
packages/@aws-cdk/aws-ecr/test/test.repository.ts
@@ -81,28 +81,6 @@ export = {
81
test.done();
82
},
83
84
- 'repository creation with tag immutablility is disabled'(test: Test) {
85
- // GIVEN
86
- const stack = new cdk.Stack();
87
-
88
- // WHEN
89
- new ecr.Repository(stack, 'Repo', { imageTagImmutable: false });
90
91
- // THEN
92
- // TODO: ditto
93
- expect(stack).toMatch({
94
- Resources: {
95
- Repo02AC86CF: {
96
- Type: 'AWS::ECR::Repository',
97
- DeletionPolicy: 'Retain',
98
- UpdateReplacePolicy: 'Retain',
99
- },
100
101
- });
102
103
- test.done();
104
105
106
'tag-based lifecycle policy'(test: Test) {
107
// GIVEN
108
const stack = new cdk.Stack();
0 commit comments