From d0d1b9b5b97d05bbf7a5b0806704957c9c777932 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Tue, 19 May 2026 16:30:20 +0200 Subject: [PATCH] Run prettier on files with formatting issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) Signed-off-by: Fredrik Adelöw --- .../database/operations/stitcher/performStitching.test.ts | 6 +++--- .../src/service/DefaultEntitiesCatalog.test.ts | 3 --- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/plugins/catalog-backend/src/database/operations/stitcher/performStitching.test.ts b/plugins/catalog-backend/src/database/operations/stitcher/performStitching.test.ts index 2dde95db48..7c1ab0fd01 100644 --- a/plugins/catalog-backend/src/database/operations/stitcher/performStitching.test.ts +++ b/plugins/catalog-backend/src/database/operations/stitcher/performStitching.test.ts @@ -62,9 +62,9 @@ it.each(databases.eachSupportedId())( last_discovery_at: knex.fn.now(), }, ]); - await knex( - 'refresh_state_references', - ).insert([{ source_key: 'a', target_entity_ref: 'k:ns/n' }]); + await knex('refresh_state_references').insert([ + { source_key: 'a', target_entity_ref: 'k:ns/n' }, + ]); await knex('relations').insert([ { originating_entity_id: 'my-id', diff --git a/plugins/catalog-backend/src/service/DefaultEntitiesCatalog.test.ts b/plugins/catalog-backend/src/service/DefaultEntitiesCatalog.test.ts index da1497bb1e..582a109f9e 100644 --- a/plugins/catalog-backend/src/service/DefaultEntitiesCatalog.test.ts +++ b/plugins/catalog-backend/src/service/DefaultEntitiesCatalog.test.ts @@ -712,7 +712,6 @@ describe.each(databases.eachSupportedId())( const catalog = new DefaultEntitiesCatalog({ database: knex, logger: mockServices.logger.mock(), - }); async function page(limit: number, offset?: number): Promise { @@ -781,7 +780,6 @@ describe.each(databases.eachSupportedId())( const catalog = new DefaultEntitiesCatalog({ database: knex, logger: mockServices.logger.mock(), - }); async function page( @@ -848,7 +846,6 @@ describe.each(databases.eachSupportedId())( const catalog = new DefaultEntitiesCatalog({ database: knex, logger: mockServices.logger.mock(), - }); async function page(order: 'asc' | 'desc'): Promise {