We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9aa4f0 commit efc379aCopy full SHA for efc379a
src/scenarios/client/auth/index.test.ts
@@ -16,7 +16,12 @@ beforeAll(() => {
16
setLogLevel('error');
17
});
18
19
-const skipScenarios = new Set<string>([]);
+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
+]);
25
26
const allowClientErrorScenarios = new Set<string>([
27
// Client is expected to give up (error) after limited retries, but check should pass
0 commit comments