Allows Paskia to authenticate the user to a client site. - User friendly client registration flow on the admin app - Redirect-based authentication flow (per spec) - Backchannel logout both ways to keep sessions synchronized - Groups integrated with Paskia's permission system - Adds email, preferred username and telephone fields on user profile - All new user basic info layout to show the new information, better looks - API and DB structures redesigned - Various unrelated fixes to theming and layout
23 lines
677 B
JSON
23 lines
677 B
JSON
{
|
|
"name": "paskia-e2e",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "E2E tests for Paskia using Playwright with Virtual Authenticator",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "npx playwright test",
|
|
"test:headed": "npx playwright test --headed",
|
|
"test:debug": "npx playwright test --debug",
|
|
"test:ui": "npx playwright test --ui",
|
|
"test:coverage": "COVERAGE=1 npx playwright test",
|
|
"report": "npx playwright show-report",
|
|
"install:browsers": "npx playwright install chromium"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.49.0",
|
|
"@simplewebauthn/browser": "^13.1.2",
|
|
"@types/node": "*",
|
|
"c8": "^10.1.3"
|
|
}
|
|
}
|