Skip to content

Commit 8d7e5e8

Browse files
authored
test: remove no longer needed multi-select-combo-box styles (#9955)
1 parent d8d4525 commit 8d7e5e8

File tree

3 files changed

+8
-95
lines changed

3 files changed

+8
-95
lines changed

packages/multi-select-combo-box/test/basic.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { expect } from '@vaadin/chai-plugins';
22
import { resetMouse, sendKeys, sendMouse } from '@vaadin/test-runner-commands';
33
import { fire, fixtureSync, nextFrame, nextRender, oneEvent } from '@vaadin/testing-helpers';
44
import sinon from 'sinon';
5-
import './multi-select-combo-box-test-styles.js';
65
import '../src/vaadin-multi-select-combo-box.js';
76
import { isTouch } from '@vaadin/component-base/src/browser-utils.js';
87
import { getFirstItem } from './helpers.js';

packages/multi-select-combo-box/test/chips.test.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { expect } from '@vaadin/chai-plugins';
22
import { sendKeys } from '@vaadin/test-runner-commands';
33
import { fixtureSync, nextRender, nextResize, nextUpdate } from '@vaadin/testing-helpers';
4-
import './multi-select-combo-box-test-styles.js';
54
import '../src/vaadin-multi-select-combo-box.js';
65

76
describe('chips', () => {
@@ -13,6 +12,14 @@ describe('chips', () => {
1312

1413
beforeEach(async () => {
1514
comboBox = fixtureSync(`<vaadin-multi-select-combo-box></vaadin-multi-select-combo-box>`);
15+
fixtureSync(`
16+
<style>
17+
vaadin-multi-select-combo-box {
18+
line-height: 1.25;
19+
font-family: -apple-system, 'system-ui', Roboto, 'Segoe UI', Helvetica, Arial, sans-serif;
20+
}
21+
</style>
22+
`);
1623
comboBox.items = ['apple', 'banana', 'lemon', 'orange'];
1724
comboBox.selectedItems = ['orange'];
1825
await nextRender();

packages/multi-select-combo-box/test/multi-select-combo-box-test-styles.js

Lines changed: 0 additions & 93 deletions
This file was deleted.

0 commit comments

Comments
 (0)