Skip to content

Commit efc379a

Browse files
committed
Skip client credentials scenarios pending TypeScript SDK support
1 parent a9aa4f0 commit efc379a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/scenarios/client/auth/index.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ beforeAll(() => {
1616
setLogLevel('error');
1717
});
1818

19-
const skipScenarios = new Set<string>([]);
19+
const skipScenarios = new Set<string>([
20+
// Client credentials scenarios require SDK support for client_credentials grant
21+
// Pending typescript-sdk implementation
22+
'auth/client-credentials-jwt',
23+
'auth/client-credentials-basic'
24+
]);
2025

2126
const allowClientErrorScenarios = new Set<string>([
2227
// Client is expected to give up (error) after limited retries, but check should pass

0 commit comments

Comments
 (0)