Skip to content

Commit

Permalink
feat: removed commented code
Browse files Browse the repository at this point in the history
Signed-off-by: tipusinghaw <[email protected]>
  • Loading branch information
tipusinghaw committed Apr 18, 2024
1 parent ca532c5 commit b4dfbdc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion tests/fixtures/test.data.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const testDid =
'did:polygon:testnet:0x13cd23928Ae515b86592C630f56C138aE4c7B79a'
'did:polygon:testnet:0x4487cB2567De2Ca6dc5F79A7f6ae944522C4b698'

export const url = 'https://rpc-mumbai.maticvigil.com/'

Expand Down
20 changes: 10 additions & 10 deletions tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ describe('polygon-did-resolver', () => {
DIDS.forEach(createDidValidationTest)
})

// describe('Validate did document', () => {
// before(async () => {
// const polygonDidResolver = getResolver()
// const resolver = new Resolver(polygonDidResolver)
// resolveDidRes = await resolver.resolve(testDid)
// })
// it('should get DID document', async () => {
// assert.ok(resolveDidRes.didDocument)
// })
// }) //commented for git actions
describe('Validate did document', () => {
before(async () => {
const polygonDidResolver = getResolver()
const resolver = new Resolver(polygonDidResolver)
resolveDidRes = await resolver.resolve(testDid)
})
it('should get DID document', async () => {
assert.ok(resolveDidRes.didDocument)
})
})
})

0 comments on commit b4dfbdc

Please sign in to comment.