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 011e8a4 commit 09dd31cCopy full SHA for 09dd31c
example/App.js
@@ -193,7 +193,7 @@ export const App = () => {
193
setShow(true);
194
setTimeout(() => {
195
setShow(false);
196
- }, 3000);
+ }, 5000);
197
}}
198
title="Show and dismiss picker!"
199
/>
example/e2e/detoxTest.spec.js
@@ -141,8 +141,9 @@ describe('Example', () => {
141
142
it(':android: when component unmounts, dialog is dismissed', async () => {
143
await elementById('showAndDismissPickerButton').tap();
144
+ await wait(2000);
145
await expect(getDatePickerAndroid()).toBeVisible();
- await wait(3500);
146
+ await wait(5000);
147
148
await expect(getDatePickerAndroid()).toNotExist();
149
});
0 commit comments