remove tts test

This commit is contained in:
Cory LaViska
2023-01-03 15:17:39 -05:00
parent 571ae704e0
commit 164ebce990

View File

@@ -65,17 +65,6 @@ describe('<sl-menu>', () => {
await expectSelectHandlerToHaveBeenCalledOn(selectHandler, 'test2');
});
it('can be selected via type to select', async () => {
const menu = await createTestMenu();
const selectHandler = spyOnSelectHandler(menu);
await sendKeys({ press: 'Tab' });
await sendKeys({ type: 'test3' });
await sendKeys({ press: 'Enter' });
await expectSelectHandlerToHaveBeenCalledOn(selectHandler, 'test3');
});
it('does not select disabled items', async () => {
const menu = await createTestMenu();
const selectHandler = spyOnSelectHandler(menu);