Skip to content

Commit c4a6810

Browse files
hide non-FT tools only when client is partially configured
1 parent b28a125 commit c4a6810

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/swagger/client.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,11 @@ export class SwaggerClient implements Client {
318318
if (tool.toolset === "Functional Testing" && !this.ftApi) {
319319
return;
320320
}
321-
if (tool.toolset !== "Functional Testing" && !this.api) {
321+
if (
322+
tool.toolset !== "Functional Testing" &&
323+
!this.api &&
324+
this.isConfigured()
325+
) {
322326
return;
323327
}
324328

0 commit comments

Comments
 (0)