Skip to content

Commit

Permalink
test: skip flaky date-picker has-input-value-changed event test (#6262)
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan committed Jul 28, 2023
1 parent 853e497 commit f5ff517
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/date-picker/test/events.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,8 @@ describe('events', () => {
expect(hasInputValueChangedSpy.calledBefore(valueChangedSpy)).to.be.true;
});

it('should be fired when selecting a date with Space', async () => {
// FIXME: flaky test often failing in CI
it.skip('should be fired when selecting a date with Space', async () => {
// Move focus inside the dropdown to the typed date.
await sendKeys({ press: 'ArrowDown' });
await waitForScrollToFinish(datePicker._overlayContent);
Expand Down

0 comments on commit f5ff517

Please sign in to comment.