Skip to content

Commit

Permalink
fix(deps): update dependencies, remove ts-jest
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceanis committed Jan 13, 2022
1 parent d9bf0d1 commit 789ec69
Show file tree
Hide file tree
Showing 3 changed files with 1,216 additions and 1,354 deletions.
31 changes: 15 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"dependencies": {
"cross-fetch": "^3.1.2",
"did-resolver": "^3.1.3"
"did-resolver": "^3.1.5"
},
"scripts": {
"test": "jest",
Expand All @@ -49,26 +49,25 @@
]
},
"devDependencies": {
"@babel/core": "7.16.5",
"@babel/preset-env": "7.16.5",
"@babel/preset-typescript": "7.16.5",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.1",
"@types/jest": "27.0.3",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-jest": "27.4.5",
"codecov": "3.8.2",
"eslint": "7.32.0",
"@babel/core": "7.16.7",
"@babel/preset-env": "7.16.8",
"@babel/preset-typescript": "7.16.7",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/jest": "27.4.0",
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"babel-jest": "27.4.6",
"codecov": "3.8.3",
"eslint": "8.6.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.7.0",
"eslint-plugin-jest": "25.3.4",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.4.5",
"jest": "27.4.7",
"microbundle": "0.14.2",
"prettier": "2.5.1",
"regenerator-runtime": "0.13.9",
"semantic-release": "17.4.7",
"ts-jest": "27.1.2",
"semantic-release": "18.0.1",
"typescript": "4.5.4"
}
}
3 changes: 1 addition & 2 deletions src/__tests__/resolver.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ import { Resolver, DIDDocument, Resolvable } from 'did-resolver'
import { getResolver } from '../resolver'
import fetch from 'cross-fetch'
jest.mock('cross-fetch')
import { mocked } from 'ts-jest/utils'
const mockedFetch = mocked(fetch, true)
const mockedFetch = jest.mocked(fetch, true)

describe('web did resolver', () => {
const did: string = 'did:web:example.com'
Expand Down
Loading

0 comments on commit 789ec69

Please sign in to comment.