Skip to content

Commit

Permalink
fix: get did from ceramicclient
Browse files Browse the repository at this point in the history
  • Loading branch information
smrz2001 committed Feb 2, 2024
1 parent 12e79bb commit 3184dfe
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/__tests__/indexing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = []
Expand All @@ -102,7 +102,6 @@ describe('indexing', () => {
}

afterEach(() => {
ceramic.did = originalDid
ceramicClient.did = originalDid
})

Expand Down

0 comments on commit 3184dfe

Please sign in to comment.