Skip to content

Commit 5433b5b

Browse files
Merge branch 'main' into feature/update_cli_2.3.48
2 parents 9437983 + 9c37ff0 commit 5433b5b

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

package-lock.json

Lines changed: 3 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
"overrides": {
5858
"bluebird": "3.7.2",
5959
"flatted": "^3.4.2",
60-
"minimatch": "^3.1.2"
60+
"minimatch": "^3.1.2",
61+
"underscore": "^1.13.8"
6162
},
6263
"publishConfig": {
6364
"registry": "https://npm.pkg.github.com"

src/tests/LearnMoreDescriptions.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ const cxWrapperFactory = new CxWrapperFactory();
66

77
describe("LearnMoreDescriptions cases",() => {
88
const cxScanConfig = new BaseTest();
9-
it('LearnMoreDescriptions Successful case', async () => {
9+
it.skip('LearnMoreDescriptions Successful case', async () => {
1010
const auth = await cxWrapperFactory.createWrapper(cxScanConfig);
1111
const queryId = process.env.CX_TEST_QUERY_ID;
1212
const data = await auth.learnMore(queryId !== undefined? queryId : "16772998409937314312")
1313
const cxCommandOutput: CxCommandOutput = data;
1414
expect(cxCommandOutput.payload.length).toBeGreaterThan(0);
1515
})
1616

17-
it('LearnMoreDescriptions Failure case', async () => {
17+
it.skip('LearnMoreDescriptions Failure case', async () => {
1818
const auth = await cxWrapperFactory.createWrapper(cxScanConfig);
1919
const data = await auth.learnMore("")
2020
const cxCommandOutput: CxCommandOutput = data;

0 commit comments

Comments
 (0)