Skip to content
Draft
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 .github/workflows/e2e-browser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22.x
node-version-file: ".nvmrc"
cache: npm
- run: npm ci
- run: npm run build
Expand Down
3 changes: 1 addition & 2 deletions e2e/node/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ import {
getAuthenticatedSession,
getNodeTestingEnvironment,
} from "@inrupt/internal-test-env";
import type { Session } from "@inrupt/solid-client-authn-node";
import {
describe,
it,
Expand Down Expand Up @@ -101,7 +100,7 @@ const env = getNodeTestingEnvironment({
});
describe("End-to-end verifiable credentials tests for environment", () => {
let vcSubject: string;
let session: Session;
let session: Awaited<ReturnType<typeof getAuthenticatedSession>>;
let issuerService: string;
let derivationService: string;
let statusService: string;
Expand Down
Loading