mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
fix: e2e test fails
This commit is contained in:
parent
9dc2e73e38
commit
c02fd574a3
1 changed files with 4 additions and 0 deletions
|
|
@ -174,6 +174,7 @@ describe('/activities', () => {
|
||||||
expect(body).toEqual({
|
expect(body).toEqual({
|
||||||
id: expect.any(String),
|
id: expect.any(String),
|
||||||
assetId: null,
|
assetId: null,
|
||||||
|
assetIds: null,
|
||||||
createdAt: expect.any(String),
|
createdAt: expect.any(String),
|
||||||
type: 'comment',
|
type: 'comment',
|
||||||
comment: 'This is my first comment',
|
comment: 'This is my first comment',
|
||||||
|
|
@ -190,6 +191,7 @@ describe('/activities', () => {
|
||||||
expect(body).toEqual({
|
expect(body).toEqual({
|
||||||
id: expect.any(String),
|
id: expect.any(String),
|
||||||
assetId: null,
|
assetId: null,
|
||||||
|
assetIds: null,
|
||||||
createdAt: expect.any(String),
|
createdAt: expect.any(String),
|
||||||
type: 'like',
|
type: 'like',
|
||||||
comment: null,
|
comment: null,
|
||||||
|
|
@ -235,6 +237,7 @@ describe('/activities', () => {
|
||||||
expect(body).toEqual({
|
expect(body).toEqual({
|
||||||
id: expect.any(String),
|
id: expect.any(String),
|
||||||
assetId: asset.id,
|
assetId: asset.id,
|
||||||
|
assetIds: null,
|
||||||
createdAt: expect.any(String),
|
createdAt: expect.any(String),
|
||||||
type: 'comment',
|
type: 'comment',
|
||||||
comment: 'This is my first comment',
|
comment: 'This is my first comment',
|
||||||
|
|
@ -251,6 +254,7 @@ describe('/activities', () => {
|
||||||
expect(body).toEqual({
|
expect(body).toEqual({
|
||||||
id: expect.any(String),
|
id: expect.any(String),
|
||||||
assetId: asset.id,
|
assetId: asset.id,
|
||||||
|
assetIds: null,
|
||||||
createdAt: expect.any(String),
|
createdAt: expect.any(String),
|
||||||
type: 'like',
|
type: 'like',
|
||||||
comment: null,
|
comment: null,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue