Skip to content

Commit 75212a0

Browse files
committed
fix(ci): prettier + drop stale XAA expected-failure
- Run prettier on crossAppAccess.ts (applyClientAuthentication call from ef35f0b wasn't formatted). - Remove auth/cross-app-access-complete-flow from expected-failures baseline; it passes now (289/289 in CI).
1 parent 102bbef commit 75212a0

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

packages/client/src/client/crossAppAccess.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -270,12 +270,7 @@ export async function exchangeJwtAuthGrant(options: {
270270
'Content-Type': 'application/x-www-form-urlencoded'
271271
});
272272

273-
applyClientAuthentication(
274-
authMethod,
275-
{ client_id: clientId, client_secret: clientSecret },
276-
headers,
277-
params
278-
);
273+
applyClientAuthentication(authMethod, { client_id: clientId, client_secret: clientSecret }, headers, params);
279274

280275
const response = await fetchFn(String(tokenEndpoint), {
281276
method: 'POST',
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Conformance scenarios not yet implemented in the v2 TypeScript SDK.
22
# CI exits 0 if only these fail, exits 1 on unexpected failures or stale entries.
33

4-
client:
5-
- auth/cross-app-access-complete-flow
4+
client: []

0 commit comments

Comments
 (0)