From 0ae68b15ddcf02c259df25e627378369058a1619 Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Sun, 26 Mar 2023 15:02:46 +0200 Subject: [PATCH] enable nativeAutomation --- integration_test/example_test.dart | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/integration_test/example_test.dart b/integration_test/example_test.dart index e7e3cce..a100fef 100644 --- a/integration_test/example_test.dart +++ b/integration_test/example_test.dart @@ -5,7 +5,7 @@ import 'package:patrol/patrol.dart'; void main() { patrolTest( 'counter state is the same after going to home and switching apps', - // nativeAutomation: true, + nativeAutomation: true, ($) async { // Replace later with your app's main widget await $.pumpWidgetAndSettle( @@ -19,6 +19,7 @@ void main() { expect($('app'), findsOneWidget); await $.native.pressHome(); + await $.native.openApp(); }, ); -} \ No newline at end of file +}