We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee6a338 commit baef4f7Copy full SHA for baef4f7
resources/assets/js/__tests__/Date.test.js
@@ -417,27 +417,6 @@ describe('date-field',()=>{
417
expect(input.setSelectionRange).toHaveBeenCalledWith(0,2);
418
});
419
420
- test('show on focus', async () => {
421
- let $date = await createVm();
422
-
423
- let { input } = $date.$refs;
424
425
- input.focus();
426
427
- expect($date.showPicker).toBe(true);
428
- });
429
430
- test('hide on blur', async () => {
431
432
433
434
435
436
- input.blur();
437
438
- expect($date.showPicker).toBe(false);
439
440
441
test('time only value', async () => {
442
let $date = await createVm({
443
propsData: {
0 commit comments