A social knowledge tool for researchers built on ATProto

Merge branch 'fix/skip-publisher-tests' into fix/mock-persistence-config

Changed files
+4 -4
src
+2 -2
src/modules/atproto/infrastructure/__tests__/ATProtoCardPublisher.integration.test.ts
··· 12 12 dotenv.config({ path: '.env.test' }); 13 13 14 14 // Set to false to skip unpublishing (useful for debugging published records) 15 - const UNPUBLISH = false; 15 + const UNPUBLISH = true; 16 16 17 - describe('ATProtoCardPublisher', () => { 17 + describe.skip('ATProtoCardPublisher', () => { 18 18 let publisher: ATProtoCardPublisher; 19 19 let curatorId: CuratorId; 20 20 let publishedCardIds: PublishedRecordId[] = [];
+2 -2
src/modules/atproto/infrastructure/__tests__/ATProtoCollectionPublisher.integration.test.ts
··· 15 15 dotenv.config({ path: '.env.test' }); 16 16 17 17 // Set to false to skip unpublishing (useful for debugging published records) 18 - const UNPUBLISH = false; 18 + const UNPUBLISH = true; 19 19 20 - describe('ATProtoCollectionPublisher', () => { 20 + describe.skip('ATProtoCollectionPublisher', () => { 21 21 let collectionPublisher: ATProtoCollectionPublisher; 22 22 let cardPublisher: FakeCardPublisher; 23 23 let curatorId: CuratorId;