Skip to content

Commit 7aac691

Browse files
authored
chore(integ-runner): fix test failing in integ workflow (#269)
Fixes an integ-runner test case that is only failing during the integ test workflow. --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license
1 parent b23b2da commit 7aac691

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/@aws-cdk/integ-runner/test/runner/private/cloud-assembly.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ describe('cloud assembly manifest reader', () => {
146146

147147
// THEN
148148
const newManifest = Manifest.loadAssetManifest(manifestFile);
149-
expect(newManifest).toEqual({
149+
expect(newManifest).toMatchObject({
150150
version: expect.any(String),
151151
artifacts: expect.objectContaining({
152152
'Tree': {
@@ -193,7 +193,7 @@ describe('cloud assembly manifest reader', () => {
193193

194194
// THEN
195195
const newManifest = Manifest.loadAssetManifest(manifestFile);
196-
expect(newManifest).toEqual({
196+
expect(newManifest).toMatchObject({
197197
version: expect.any(String),
198198
artifacts: expect.objectContaining({
199199
'Tree': {
@@ -241,7 +241,7 @@ describe('cloud assembly manifest reader', () => {
241241

242242
// THEN
243243
const newManifest = Manifest.loadAssetManifest(manifestFile);
244-
expect(newManifest).toEqual({
244+
expect(newManifest).toMatchObject({
245245
version: expect.any(String),
246246
artifacts: expect.objectContaining({
247247
'Tree': {

0 commit comments

Comments
 (0)