Skip to content

Commit fe5eb36

Browse files
feat: Fix android failing test
1 parent 8cd8655 commit fe5eb36

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/functional/flutter_integration/helper/desired_capabilities.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ def get_desired_capabilities(platform_name: str) -> Dict[str, Any]:
2323
{
2424
'platformName': 'Android',
2525
'deviceName': 'Android Emulator',
26-
'newCommandTimeout': 240,
26+
'newCommandTimeout': 120,
2727
'uiautomator2ServerInstallTimeout': 120000,
2828
'adbExecTimeout': 120000,
2929
'app': os.getenv('FLUTTER_ANDROID_APP'),
30+
'autoGrantPermissions': True
3031
}
3132
)
3233
else:

0 commit comments

Comments
 (0)