Add android flavor to dartDefines. #2425
Merged
Cirrus CI / Test `patrol develop` on macOS
failed
Nov 26, 2024 in 14m 7s
Task Summary
Instruction patrol_test failed in 11:48
Details
✅ 00:04 clone
✅ 00:34 set_up_fvm
✅ 01:03 setup_flutter
✅ 00:14 melos_bootstrap
✅ 00:02 setup_patrol_cli
✅ 00:13 setup_simulator
❌ 11:48 patrol_test
patrol(
'counter state is the same after going to Home and switching apps',
($) async {
await createApp($);
await $(FloatingActionButton).tap();
expect($(#counterText).text, '1');
await $(#textField).enterText('Hello, Flutter!');
expect($('Hello, Flutter!'), findsOneWidget);
$.log('Tapped the button');
await $.native.pressHome();
await $.native.openApp();
expect($(#counterText).text, '1');
await $(FloatingActionButton).tap();
expect($(#counterText).text, '2');
expect($('Hello, Flutter!'), findsOneWidget);
},
);
patrol(
'short test with two tags',
skip: true,
tags: ['smoke', 'fume'],
($) async {
await createApp($);
await $(FloatingActionButton).tap();
expect($(#counterText).text, '1');
await $(FloatingActionButton).tap();
expect($(#counterText).text, '2');
},
);
patrol(
'short test with tag',
tags: ['smoke'],
($) async {
await createApp($);
await $(FloatingActionButton).tap();
expect($(#counterText).text, '1');
await $(#textField).enterText('Hello, Flutter!');
expect($('Hello, Flutter!'), findsOneWidget);
},
);
}
End of the running file
Exiting with exit code 1
����������������������
Loading