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 791894f commit dbdefd1Copy full SHA for dbdefd1
packages/date-picker/test/validation.common.js
@@ -342,12 +342,12 @@ describe('validation', () => {
342
343
it('should validate correctly with custom validator', () => {
344
// Try invalid value.
345
- datePicker.value = '2014-01-01';
+ datePicker.value = '2014-06-01';
346
expect(datePicker.validate()).to.be.false;
347
expect(datePicker.invalid).to.be.true;
348
349
// Try valid value.
350
- datePicker.value = '2016-01-01';
+ datePicker.value = '2016-06-01';
351
expect(datePicker.validate()).to.be.true;
352
expect(datePicker.invalid).to.be.false;
353
});
0 commit comments