File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ const cxWrapperFactory = new CxWrapperFactory();
66
77describe ( "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 ;
You can’t perform that action at this time.
0 commit comments