fix: Correct JWT token key in chess user journey scenario

This commit is contained in:
2026-05-22 10:00:12 +02:00
parent 3823dd826c
commit 7140ad31b8
+1 -1
View File
@@ -30,7 +30,7 @@ export function chessUserJourney() {
return;
}
const jwt = loginRes.json('token');
const jwt = loginRes.json('accessToken');
if (!jwt) {
console.error('Failed to get JWT token from login response');
return;