We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76f9941 commit 635c0fbCopy full SHA for 635c0fb
1 file changed
src/integration-tests/AuthorizationClient.test.ts
@@ -42,7 +42,8 @@ describe("AuthorizationClient", () => {
42
await new Promise((r) => setTimeout(r, 2000 * attempt));
43
}
44
45
- const clients = new OrkesClients(client!);
+ if (client == null) throw new Error("Failed to create Conductor client");
46
+ const clients = new OrkesClients(client);
47
authClient = clients.getAuthorizationClient();
48
metadataClient = clients.getMetadataClient();
49
0 commit comments