Skip to content

Commit 23d39aa

Browse files
committed
Skip telemetryAIEvent test
1 parent 2a6a4c4 commit 23d39aa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/tests/TelemetryTest.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { BaseTest } from "./BaseTest";
55
describe("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

Comments
 (0)