We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3eb151 commit 36b4cfaCopy full SHA for 36b4cfa
flutter/test/sentry_navigator_observer_test.dart
@@ -34,6 +34,7 @@ void main() {
34
}
35
36
setUp(() {
37
+ SentryNative().reset();
38
fixture = Fixture();
39
});
40
@@ -75,7 +76,7 @@ void main() {
75
76
77
final sut = fixture.getSut(
78
hub: hub,
- autoFinishAfter: Duration(milliseconds: 10),
79
+ autoFinishAfter: Duration(milliseconds: 50),
80
);
81
82
sut.didPush(currentRoute, null);
@@ -88,7 +89,7 @@ void main() {
88
89
actualTransaction = scope.span as SentryTracer;
90
91
- await Future.delayed(Duration(milliseconds: 20));
92
+ await Future.delayed(Duration(milliseconds: 500));
93
94
expect(mockNativeChannel.numberOfEndNativeFramesCalls, 1);
95
0 commit comments