Skip to content

Commit

Permalink
[firebase_analytics] Disable expectation that breaks in flutter maste…
Browse files Browse the repository at this point in the history
  • Loading branch information
ditman authored Jun 29, 2020
1 parent db92fc3 commit 2b220e5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ void main() {
when(analytics.setCurrentScreen(screenName: anyNamed('screenName')))
.thenThrow(ArgumentError());

expect(() => observer.didPush(route, previousRoute), throwsArgumentError);
// TODO: Reenable the line below when the issue is fixed.
// https://github.com/FirebaseExtended/flutterfire/issues/2850
// expect(() => observer.didPush(route, previousRoute), throwsArgumentError);

// Print PlatformExceptions
Future<void> throwPlatformException() async =>
Expand Down

0 comments on commit 2b220e5

Please sign in to comment.