Import Instagram archive to a Bluesky account
9
fork

Configure Feed

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

Remove commented-out CID import and unused code in Bluesky test file

- Clean up unnecessary commented code and imports
- Simplify test file by removing deprecated code snippets

-7
-7
src/bluesky/bluesky.test.ts
··· 1 1 import { BlobRef } from '@atproto/api'; 2 2 3 - // import { CID } from 'multiformats'; 4 - 5 3 import fs from 'fs'; 6 4 7 5 import { BlueskyClient } from './bluesky'; ··· 45 43 beforeAll(async () => { 46 44 videoBuffer = fs.readFileSync(TEST_VIDEO_PATH); 47 45 imageBuffer = fs.readFileSync(TEST_IMAGE_PATH); 48 - /** 49 - * CID from test video uploaded to Pinata.cloud. 50 - * Creating CID from the video proved to be too challenging. 51 - */ 52 - // mockCID = CID.parse('bafybeibssikmpbeu3z7ezozo7447go7gpneqgblsyo2owed4qleljptmeu') 53 46 }); 54 47 55 48 test('should create post successfully', async () => {