We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 870230e commit 7cc926fCopy full SHA for 7cc926f
packages/date-picker/test/basic.test.js
@@ -369,27 +369,6 @@ describe('clear button', () => {
369
});
370
371
372
-describe('wrapped', () => {
373
- let container, datePicker;
374
-
375
- beforeEach(() => {
376
- container = fixtureSync(`
377
- <div style="height: 100px; overflow: scroll;">
378
- <div style="height: 1000px;">
379
- <vaadin-date-picker></vaadin-date-picker>
380
- </div>
381
382
- `);
383
- datePicker = container.querySelector('vaadin-date-picker');
384
- });
385
386
- it('should match the parent width', () => {
387
- container.querySelector('div').style.width = '120px';
388
- datePicker.style.width = '100%';
389
- expect(datePicker.clientWidth).to.equal(120);
390
391
-});
392
393
describe('initial value attribute', () => {
394
let datePicker, input;
395
0 commit comments