Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,9 @@ matrix([[true, false]] as const, async (useAad) => {
}
});

it("creates ChangePoint feedback", async function () {
// Skipped due to potential errors on service side
// Issue - https://github.com/Azure/azure-sdk-for-js/issues/19747
it.skip("creates ChangePoint feedback", async function () {
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: I usually like to leave a comment explaining why it's skipped and linking to the issue made to re-enable the test. Up to you though!

const changePointFeedback: MetricChangePointFeedback = {
metricId: testEnv.METRICS_ADVISOR_AZURE_SQLSERVER_METRIC_ID_1,
feedbackType: "ChangePoint",
Expand All @@ -558,7 +560,9 @@ matrix([[true, false]] as const, async (useAad) => {
}
});

it("creates Period feedback", async function () {
// Skipped due to potential errors on service side
// Issue - https://github.com/Azure/azure-sdk-for-js/issues/19747
it.skip("creates Period feedback", async function () {
const periodFeedback: MetricPeriodFeedback = {
metricId: testEnv.METRICS_ADVISOR_AZURE_SQLSERVER_METRIC_ID_1,
feedbackType: "Period",
Expand Down