Skip to content

Commit baef4f7

Browse files
author
antoine
committed
Fix tests
1 parent ee6a338 commit baef4f7

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

resources/assets/js/__tests__/Date.test.js

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -417,27 +417,6 @@ describe('date-field',()=>{
417417
expect(input.setSelectionRange).toHaveBeenCalledWith(0,2);
418418
});
419419

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-
let $date = await createVm();
432-
433-
let { input } = $date.$refs;
434-
435-
input.focus();
436-
input.blur();
437-
438-
expect($date.showPicker).toBe(false);
439-
});
440-
441420
test('time only value', async () => {
442421
let $date = await createVm({
443422
propsData: {

0 commit comments

Comments
 (0)