@@ -23,7 +23,9 @@ test('default setup', (): void => {
23
23
} ) ;
24
24
25
25
// THEN
26
- expect ( stack ) . toMatchCdkSnapshot ( ) ;
26
+ expect ( stack ) . toMatchCdkSnapshot ( {
27
+ ignoreAssets : true ,
28
+ } ) ;
27
29
} ) ;
28
30
29
31
test ( 'custom setup' , ( ) : void => {
@@ -44,7 +46,9 @@ test('custom setup', (): void => {
44
46
} ) ;
45
47
46
48
// THEN
47
- expect ( stack ) . toMatchCdkSnapshot ( ) ;
49
+ expect ( stack ) . toMatchCdkSnapshot ( {
50
+ ignoreAssets : true ,
51
+ } ) ;
48
52
} ) ;
49
53
50
54
test ( 'privileged' , ( ) : void => {
@@ -64,7 +68,9 @@ test('privileged', (): void => {
64
68
} ) ;
65
69
66
70
// THEN
67
- expect ( stack ) . toMatchCdkSnapshot ( ) ;
71
+ expect ( stack ) . toMatchCdkSnapshot ( {
72
+ ignoreAssets : true ,
73
+ } ) ;
68
74
} ) ;
69
75
70
76
test ( 'custom projectName' , ( ) : void => {
@@ -84,7 +90,9 @@ test('custom projectName', (): void => {
84
90
} ) ;
85
91
86
92
// THEN
87
- expect ( stack ) . toMatchCdkSnapshot ( ) ;
93
+ expect ( stack ) . toMatchCdkSnapshot ( {
94
+ ignoreAssets : true ,
95
+ } ) ;
88
96
} ) ;
89
97
90
98
test ( 'events' , ( ) : void => {
@@ -110,7 +118,9 @@ test('events', (): void => {
110
118
prCheck . onCheckFailed ( 'failed' , { target : new SnsTopic ( topic ) } ) ;
111
119
112
120
// THEN
113
- expect ( stack ) . toMatchCdkSnapshot ( ) ;
121
+ expect ( stack ) . toMatchCdkSnapshot ( {
122
+ ignoreAssets : true ,
123
+ } ) ;
114
124
} ) ;
115
125
116
126
test ( 'randomizer' , ( ) : void => {
@@ -135,5 +145,7 @@ test('randomizer', (): void => {
135
145
} ) ;
136
146
137
147
// THEN
138
- expect ( stack ) . toMatchCdkSnapshot ( ) ;
148
+ expect ( stack ) . toMatchCdkSnapshot ( {
149
+ ignoreAssets : true ,
150
+ } ) ;
139
151
} ) ;
0 commit comments