Skip to content

Commit 0acba2b

Browse files
committed
Remove test since closeDropdownOnSelect: true isn't used in select-multiple mode by default
1 parent 48eea87 commit 0acba2b

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

test-e2e/tests/select-multiple.spec.ts

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -26,31 +26,6 @@ describe(`Choices - select multiple`, () => {
2626
});
2727
});
2828

29-
describe('click selected element', () => {
30-
test('toggles the dropdown', async ({ page, bundle }) => {
31-
const suite = new SelectTestSuit(page, bundle, testUrl, testId);
32-
await suite.startWithClick();
33-
34-
const box = (await suite.itemList.locator('[data-item]').boundingBox())!;
35-
await page.mouse.move(box.x + box.width / 2, box.y + box.height / 2);
36-
await page.mouse.down();
37-
await suite.advanceClock();
38-
await suite.expectVisibleDropdown();
39-
40-
await page.mouse.up();
41-
await suite.advanceClock();
42-
await suite.expectHiddenDropdown();
43-
44-
await page.mouse.down();
45-
await suite.advanceClock();
46-
await suite.expectHiddenDropdown();
47-
48-
await page.mouse.up();
49-
await suite.advanceClock();
50-
await suite.expectVisibleDropdown();
51-
});
52-
});
53-
5429
describe('pressing an alpha-numeric key', () => {
5530
test('opens the dropdown and the input value', async ({ page, bundle }) => {
5631
const suite = new SelectTestSuit(page, bundle, testUrl, testId);

0 commit comments

Comments
 (0)