Skip to content

Commit

Permalink
bump e2e dev dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
MaikuB committed Jul 2, 2020
1 parent adb3ec2 commit 91c0346
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions flutter_local_notifications/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# [1.5.0-beta.4]

* [Android] Fix issue where the ThreeTen Android Backport library wasn't initialised
* Bump e2e dev dependency

# [1.5.0-beta.3]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
import androidx.test.rule.ActivityTestRule;

import com.dexterous.flutterlocalnotificationsexample.MainActivity;
import dev.flutter.plugins.e2e.FlutterRunner;

import dev.flutter.plugins.e2e.FlutterTestRunner;
import org.junit.Rule;
import org.junit.runner.RunWith;

@RunWith(FlutterRunner.class)
@RunWith(FlutterTestRunner.class)
public class MainActivityTest {
@Rule
public ActivityTestRule<MainActivity> rule = new ActivityTestRule<>(MainActivity.class);
}
public ActivityTestRule<MainActivity> rule = new ActivityTestRule<>(MainActivity.class, true, false);
}
2 changes: 1 addition & 1 deletion flutter_local_notifications/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dev_dependencies:
sdk: flutter
flutter_test:
sdk: flutter
e2e: ^0.4.3+1
e2e: ^0.6.0
mockito: ^4.1.1
plugin_platform_interface: ^1.0.1
pedantic: ^1.8.0
Expand Down

0 comments on commit 91c0346

Please sign in to comment.