Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: removed commented code #28

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
})
})
})
Loading