fix: e2e test

This commit is contained in:
martabal 2023-12-06 00:04:49 +01:00
parent e23168810b
commit 56ff252b2e
No known key found for this signature in database
GPG key ID: C00196E3148A52BD

View file

@ -774,15 +774,18 @@ describe(`${AssetController.name} (e2e)`, () => {
expect(body).toMatchObject({
id: asset1.id,
isFavorite: true,
people: [
{
birthDate: null,
id: expect.any(String),
isHidden: false,
name: 'Test Person',
thumbnailPath: '',
},
],
people: {
numberOfAssets: 1,
people: [
{
birthDate: null,
id: expect.any(String),
isHidden: false,
name: 'Test Person',
thumbnailPath: '',
},
],
},
});
});
});