1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-29 15:11:58 +00:00

Fixed test

This commit is contained in:
Alex Tran 2022-07-16 00:45:58 -05:00
parent 012428416d
commit 2bbc44c5ab
No known key found for this signature in database
GPG key ID: E4954BC787B85C8A

View file

@ -91,13 +91,13 @@ describe('Album', () => {
// setup users
const result = await Promise.all([
userService.createUser({
email: 'one@test.com',
email: 'one1@test.com',
password: '1234',
firstName: 'one',
lastName: 'test',
}),
userService.createUser({
email: 'two@test.com',
email: 'two2@test.com',
password: '1234',
firstName: 'two',
lastName: 'test',
@ -124,12 +124,11 @@ describe('Album', () => {
it('returns the album collection including owned and shared', async () => {
const { status, body } = await request(app.getHttpServer()).get('/album');
expect(status).toEqual(200);
expect(body).toHaveLength(3);
expect(body).toHaveLength(2);
expect(body).toEqual(
expect.arrayContaining([
expect.objectContaining({ ownerId: userOne.id, albumName: userOneShared, shared: true }),
expect.objectContaining({ ownerId: userOne.id, albumName: userOneNotShared, shared: false }),
expect.objectContaining({ ownerId: userTwo.id, albumName: userTwoShared, shared: true }),
]),
);
});