From 1d1a7f7d3f6da55104dfcbe5e540bffe67f53bab Mon Sep 17 00:00:00 2001 From: anveshmekala Date: Tue, 12 Sep 2023 12:04:50 -0500 Subject: [PATCH] update test names --- .../src/components/combobox/combobox.e2e.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/calcite-components/src/components/combobox/combobox.e2e.ts b/packages/calcite-components/src/components/combobox/combobox.e2e.ts index 406f408d859..e5b1c0b2898 100644 --- a/packages/calcite-components/src/components/combobox/combobox.e2e.ts +++ b/packages/calcite-components/src/components/combobox/combobox.e2e.ts @@ -1879,19 +1879,19 @@ describe("calcite-combobox", () => { } } - it("should clear input value in single selection-mode", async () => { + it("should clear input value in single selectionMode", async () => { await assertClickOutside("single"); }); - it("should keep input value single selection-mode with allowCustomValues", async () => { + it("should not clear input value in single selectionMode with allowCustomValues", async () => { await assertClickOutside("single", true); }); - it("should clear input value in multiple selection-mode", async () => { + it("should clear input value in multiple selectionMode", async () => { await assertClickOutside(); }); - it("should not clear input value in multiple selection-mode with allowCustomValues", async () => { + it("should not clear input value in multiple selectionMode with allowCustomValues", async () => { await assertClickOutside("multiple", true); }); });