From 14906bd0f73bb373c01ab29c55b7295b4348026c Mon Sep 17 00:00:00 2001 From: Gregory Douglas Date: Mon, 13 Jan 2025 10:54:35 -0500 Subject: [PATCH] Skip flaky tests --- .../datetime2/test/components/dateRangeInput3Tests.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/datetime2/test/components/dateRangeInput3Tests.tsx b/packages/datetime2/test/components/dateRangeInput3Tests.tsx index 9b4ad58ff5..a21d28bb31 100644 --- a/packages/datetime2/test/components/dateRangeInput3Tests.tsx +++ b/packages/datetime2/test/components/dateRangeInput3Tests.tsx @@ -712,7 +712,7 @@ describe("", () => { assertInputValuesEqual(root, START_STR_2, END_STR); }); - describe("Typing an out-of-range date", () => { + describe.skip("Typing an out-of-range date", () => { // we run the same four tests for each of several cases. putting // setup logic in beforeEach lets us express our it(...) tests as // nice one-liners further down this block, and it also gives @@ -746,7 +746,7 @@ describe("", () => { root.setProps({ onChange }); }); - describe.skip("shows the error message on blur", () => { + describe("shows the error message on blur", () => { runTestForEachScenario((inputGetterFn, inputString) => { changeInputText(inputGetterFn(root), inputString); inputGetterFn(root).simulate("blur"); @@ -754,7 +754,7 @@ describe("", () => { }); }); - describe.skip("shows the offending date in the field on focus", () => { + describe("shows the offending date in the field on focus", () => { runTestForEachScenario((inputGetterFn, inputString) => { changeInputText(inputGetterFn(root), inputString); inputGetterFn(root).simulate("blur"); @@ -808,7 +808,7 @@ describe("", () => { } }); - describe("Typing an invalid date", () => { + describe.skip("Typing an invalid date", () => { let onChange: sinon.SinonSpy; let onError: sinon.SinonSpy; let root: WrappedComponentRoot; @@ -834,7 +834,7 @@ describe("", () => { root.setProps({ onChange }); }); - describe.skip("shows the error message on blur", () => { + describe("shows the error message on blur", () => { runTestForEachScenario(inputGetterFn => { inputGetterFn(root).simulate("focus"); changeInputText(inputGetterFn(root), INVALID_STR);