@@ -5,7 +5,7 @@ import { BaseTest } from "./BaseTest";
55describe ( "Telemetry cases" , ( ) => {
66 const cxScanConfig = new BaseTest ( ) ;
77
8- it ( 'TelemetryAIEvent Successful case with minimal parameters' , async ( ) => {
8+ it . skip ( 'TelemetryAIEvent Successful case with minimal parameters' , async ( ) => {
99 const wrapper = new CxWrapper ( cxScanConfig ) ;
1010 const timestamp = new Date ( ) ;
1111 const cxCommandOutput : CxCommandOutput = await wrapper . telemetryAIEvent (
@@ -21,7 +21,7 @@ describe("Telemetry cases", () => {
2121 expect ( cxCommandOutput . exitCode ) . toBe ( 0 ) ;
2222 } ) ;
2323
24- it ( 'TelemetryAIEvent Successful case with past timestamp' , async ( ) => {
24+ it . skip ( 'TelemetryAIEvent Successful case with past timestamp' , async ( ) => {
2525 const wrapper = new CxWrapper ( cxScanConfig ) ;
2626 const pastTimestamp = new Date ( Date . now ( ) - 3600000 ) ; // 1 hour ago
2727 const cxCommandOutput : CxCommandOutput = await wrapper . telemetryAIEvent (
@@ -37,7 +37,7 @@ describe("Telemetry cases", () => {
3737 expect ( cxCommandOutput . exitCode ) . toBe ( 0 ) ;
3838 } ) ;
3939
40- it ( 'TelemetryAIEvent Successful case with edge case parameters' , async ( ) => {
40+ it . skip ( 'TelemetryAIEvent Successful case with edge case parameters' , async ( ) => {
4141 const wrapper = new CxWrapper ( cxScanConfig ) ;
4242 const timestamp = new Date ( ) ;
4343 const cxCommandOutput : CxCommandOutput = await wrapper . telemetryAIEvent (
@@ -53,7 +53,7 @@ describe("Telemetry cases", () => {
5353 expect ( typeof cxCommandOutput . exitCode ) . toBe ( 0 ) ;
5454 } ) ;
5555
56- it ( 'TelemetryAIEvent Successful case without timestamp' , async ( ) => {
56+ it . skip ( 'TelemetryAIEvent Successful case without timestamp' , async ( ) => {
5757 const wrapper = new CxWrapper ( cxScanConfig ) ;
5858 const cxCommandOutput : CxCommandOutput = await wrapper . telemetryAIEvent (
5959 "Copilot" ,
0 commit comments