Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
ymao1 committed Mar 2, 2022
1 parent 98199e9 commit 5d93f6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ export default function createActionsTelemetryTests({ getService }: FtrProviderC
});
const taskState = telemetryTask?._source?.task?.state;
expect(taskState).not.to.be(undefined);
console.log(`TASK STATE: ${JSON.stringify(taskState)}`);
const telemetry = JSON.parse(taskState!);

// total number of connectors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ export default function createAlertingTelemetryTests({ getService }: FtrProvider
});
const taskState = telemetryTask?._source?.task?.state;
expect(taskState).not.to.be(undefined);
console.log(`TASK STATE: ${JSON.stringify(taskState)}`);
const telemetry = JSON.parse(taskState!);

// total number of rules
Expand Down

0 comments on commit 5d93f6a

Please sign in to comment.