Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
Signed-off-by: zFernand0 <[email protected]>
  • Loading branch information
zFernand0 committed Feb 7, 2024
1 parent 64d121c commit 0745776
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions packages/cli/__tests__/__src__/ITestPropertiesSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,57 +15,57 @@
*/
export interface ITestPropertiesSchema {

/**
/**
* Properties related to connecting to CICS service
*/
cics: {
/**
cics: {
/**
* user ID to connect to CMCI
*/
user: string,
/**
user: string,
/**
* Password to connect to CMCI
*/
password: string,
/**
password: string,
/**
* host name for CMCI
*/
host: string,
/**
host: string,
/**
* Port for CMCI
*/
port?: number,
port?: number,

/**
/**
* http or https protocol for CMCI
*/
protocol?: string;
protocol?: string;

/**
/**
* http or https protocol for CMCI
*/
rejectUnauthorized?: boolean;
};
rejectUnauthorized?: boolean;
};

/**
/**
* Properties related to connecting to CMCI
*/
cmci: {
/**
cmci: {
/**
* CSD group to define resources to
*/
csdGroup?: string;
csdGroup?: string;

/**
/**
* Name of the CICS region e.g. "CICSCMCI"
*/
regionName?: string;
};
regionName?: string;
};

urimap: {
/**
urimap: {
/**
* Name of the certificate to use for CICS Client Testing
*/
certificate?: string;
};
certificate?: string;
};
}

0 comments on commit 0745776

Please sign in to comment.