From 3184dfe9cc8af7c81fd68304a82560fc35aa7adc Mon Sep 17 00:00:00 2001 From: Mohsin Zaidi Date: Fri, 2 Feb 2024 18:16:29 -0500 Subject: [PATCH] fix: get did from ceramicclient --- src/__tests__/indexing.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/__tests__/indexing.ts b/src/__tests__/indexing.ts index b8eabc8..cc5a2a8 100644 --- a/src/__tests__/indexing.ts +++ b/src/__tests__/indexing.ts @@ -84,7 +84,7 @@ const waitForMidsToBeIndexed = async ( describe('indexing', () => { describe('Using existing model', () => { jest.setTimeout(1000 * 90) // 1 and a half minutes per test - const originalDid = ceramic.did as DID + const originalDid = ceramicClient.did as DID const singleNodeTestCases: any[] = [['ceramic', ceramic]] const twoNodesTestCases: any[] = [] @@ -102,7 +102,6 @@ describe('indexing', () => { } afterEach(() => { - ceramic.did = originalDid ceramicClient.did = originalDid })