Skip to content

Commit 29939fc

Browse files
FIO-10299: fixed tests (#6204)
* FIO-10299: fixed tests * fixed timeout for test to pass
1 parent 1cc5d1b commit 29939fc

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

src/widgets/CalendarWidget.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,9 +291,6 @@ export default class CalendarWidget extends InputWidget {
291291
if (!this.calendar) {
292292
return super.getValue();
293293
}
294-
if(this.settings.isManuallyOverriddenValue){
295-
return this.settings.manualInputValue;
296-
}
297294
// Get the selected dates from the calendar widget.
298295
const dates = this.calendar.selectedDates;
299296
if (!dates || !dates.length) {

test/unit/TextArea.unit.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,8 +347,8 @@ describe('TextArea Component', () => {
347347
assert.equal(wordCount.textContent, '2 words');
348348
done();
349349
}, 600);
350-
}, 500);
351-
}, 500);
350+
}, 600);
351+
}, 600);
352352
});
353353

354354
it('Should correctly count characters if character counter is enabled', (done) => {

0 commit comments

Comments
 (0)