Import Instagram archive to a Bluesky account
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update test file imports and module references

- Reorganize imports in `instagram-to-bluesky.test.ts`
- Remove unused imports
- Update import paths to match current module structure

+4 -4
+4 -4
src/instagram-to-bluesky.test.ts
··· 1 - import { main, formatDuration, calculateEstimatedTime } from '../src/app'; 1 + import fs from 'fs'; 2 + 2 3 import { BlueskyClient } from '../src/bluesky'; 3 - import { processPost } from '../src/media'; 4 + import { main, formatDuration, calculateEstimatedTime } from '../src/instagram-to-bluesky'; 4 5 import { logger } from '../src/logger'; 5 - import fs from 'fs'; 6 - import { createVideoEmbed, processVideoPost } from '../src/video'; 6 + import { processPost } from '../src/media'; 7 7 8 8 // Mock all dependencies 9 9 jest.mock('fs');