fix: prettier formatting in marketplace integration test

Made-with: Cursor
This commit is contained in:
Félix Malfait
2026-03-04 19:47:14 +01:00
parent cc96f112e7
commit d4bd43a68a
@@ -145,9 +145,7 @@ describe('Marketplace Catalog Sync (integration)', () => {
const res = await gqlRequest(MARKETPLACE_QUERY).expect(200);
const apps = res.body.data.findManyMarketplaceApps;
const testApp = apps.find(
(app: { id: string }) => app.id === npmUid,
);
const testApp = apps.find((app: { id: string }) => app.id === npmUid);
expect(testApp).toBeDefined();
expect(testApp.name).toBe('Test Catalog App');