Skip to content
Merged
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
9 changes: 1 addition & 8 deletions .github/workflows/e2e-browser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,11 @@ jobs:
runs-on: ${{ matrix.os }}
environment:
name: ${{ matrix.environment-name }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
# Available OS's: https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
os: [ubuntu-latest, windows-latest]
environment-name: ["ESS PodSpaces", "ESS Release-2-3", "ESS Next"]
experimental: [false]
include:
- environment-name: "ESS Dev-2-3"
experimental: true
os: ubuntu-latest

environment-name: ["ESS PodSpaces", "ESS Next"]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix:
os: [ubuntu-latest]
node-version: ["20.x", "22.x", "24.x"]
environment-name: ["ESS PodSpaces", "ESS Release-2-3", "ESS Next"]
environment-name: ["ESS PodSpaces", "ESS Next"]
experimental: [false]
steps:
- uses: actions/checkout@v6
Expand Down
3 changes: 1 addition & 2 deletions e2e/browser/test-app/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ import {
} from "@inrupt/solid-client-authn-browser";
import SolidClient from "../components/solidClient";

const REDIRECT_URL = window.location.href;
const APP_NAME = "Solid client browser-based tests app";
const DEFAULT_ISSUER = "https://login.inrupt.com/";

Expand All @@ -50,7 +49,7 @@ export default function AppContainer() {
// Login will redirect the user away so that they can log in the OIDC issuer,
// and back to the provided redirect URL (which should be controlled by your app).
await login({
redirectUrl: REDIRECT_URL,
redirectUrl: window.location.href,
oidcIssuer: issuer,
clientName: APP_NAME,
});
Expand Down
Loading
Loading