Skip to content

Commit

Permalink
test: trash e2e go back to checking length of assets is zero
Browse files Browse the repository at this point in the history
  • Loading branch information
zackpollard authored and Zack Pollard committed May 16, 2024
1 parent 5e46b7c commit a5dbef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/src/api/specs/trash.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('/trash', () => {
await utils.waitForWebsocketEvent({ event: 'assetDelete', id: assetId });

const after = await getAllAssets({}, { headers: asBearerAuth(admin.accessToken) });
expect(after).toBe([]);
expect(after.length).toBe(0);
});
});

Expand Down

0 comments on commit a5dbef9

Please sign in to comment.