Skip to content

Commit

Permalink
Update @types/node and fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardsph committed Jan 17, 2025
1 parent a4c3b3d commit f97c1bb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"devDependencies": {
"@inrupt/eslint-config-lib": "^3.2.4",
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.1",
"@types/node": "^22.10.7",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"esbuild": "^0.24.2",
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"build-docs-preview-site": "npm run build-api-docs; cd docs/api; make html"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/node": "^22.10.7",
"@types/uuid": "^10.0.0"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"build-docs-preview-site": "npm run build-api-docs; cd docs/api; make html"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/node": "^22.10.7",
"@types/uuid": "^10.0.0"
},
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/node/src/login/oidc/__mocks__/ClientRegistrar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ import type {
IClientRegistrar,
IClientRegistrarOptions,
IIssuerConfig,
IOpenIdDynamicClient,
} from "@inrupt/solid-client-authn-core";
import { jest } from "@jest/globals";
import type { ClientMetadata } from "openid-client";

export const mockDefaultClient = (): IClient => {
export const mockDefaultClient = (): IOpenIdDynamicClient => {
return {
clientId: "a client id",
clientSecret: "a client secret",
Expand Down

0 comments on commit f97c1bb

Please sign in to comment.