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 6987df2 commit dada416Copy full SHA for dada416
1 file changed
FabricExample/e2e/issuesTests/Test577.e2e.ts
@@ -19,6 +19,10 @@ describe('Test577', () => {
19
if (device.getPlatform() === 'ios') {
20
it('does not display content underneath modal with gesture disabled when attempting to close it', async () => {
21
await element(by.text('Open modal')).tap();
22
+
23
+ // Original bug was happening after a few consecutive attempts to close the modal.
24
+ // See this GIF: https://github.com/software-mansion/react-native-screens/issues/577#issue-666185758
25
+ // Decided to try it a few times.
26
for (let i = 0; i < 5; ++i) {
27
await element(by.text('Modal')).swipe('down', 'fast');
28
await expect(element(by.text('Open modal'))).not.toBeVisible();
0 commit comments