Skip to content

Commit

Permalink
update test names
Browse files Browse the repository at this point in the history
  • Loading branch information
anveshmekala committed Sep 12, 2023
1 parent 167349f commit 1d1a7f7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
});
Expand Down

0 comments on commit 1d1a7f7

Please sign in to comment.