diff --git a/packages/bsky/tests/pipeline/reingest.test.ts b/packages/bsky/tests/pipeline/reingest.test.ts index 8d90f9fea8f..8d41bf45aec 100644 --- a/packages/bsky/tests/pipeline/reingest.test.ts +++ b/packages/bsky/tests/pipeline/reingest.test.ts @@ -4,8 +4,8 @@ import { getIngester, ingestAll, basicSeed, + BskyIngester, } from '@atproto/dev-env' -import { BskyIngester } from '../../src' const TEST_NAME = 'pipeline_reingest' diff --git a/packages/bsky/tests/pipeline/repartition.test.ts b/packages/bsky/tests/pipeline/repartition.test.ts index 2c7470fc06d..569632a727e 100644 --- a/packages/bsky/tests/pipeline/repartition.test.ts +++ b/packages/bsky/tests/pipeline/repartition.test.ts @@ -7,8 +7,8 @@ import { ingestAll, processAll, usersSeed, + BskyIngester, } from '@atproto/dev-env' -import { BskyIngester } from '../../src' import { countAll } from '../../src/db/util' const TEST_NAME = 'pipeline_repartition' diff --git a/packages/dev-env/src/bsky.ts b/packages/dev-env/src/bsky.ts index 4548cd45c41..fddd6d569b0 100644 --- a/packages/dev-env/src/bsky.ts +++ b/packages/dev-env/src/bsky.ts @@ -11,6 +11,8 @@ import { uniqueLockId } from './util' import { TestNetworkNoAppView } from './network-no-appview' import { ADMIN_PASSWORD, MOD_PASSWORD, TRIAGE_PASSWORD } from './const' +export * from '@atproto/bsky' + export class TestBsky { constructor( public url: string,