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 f6ad97a commit 33c1963Copy full SHA for 33c1963
analytics/integration_test/src/integration_test.cc
@@ -43,6 +43,7 @@
43
44
namespace firebase_testapp_automated {
45
46
+using app_framework::ProcessEvents;
47
using firebase_test_framework::FirebaseTest;
48
49
class FirebaseAnalyticsTest : public FirebaseTest {
@@ -70,6 +71,14 @@ void FirebaseAnalyticsTest::TearDownTestSuite() {
70
71
firebase::analytics::Terminate();
72
delete shared_app_;
73
shared_app_ = nullptr;
74
+
75
+ // The Analytics integration test is too fast for FTL, so pause a few seconds
76
+ // here.
77
+ ProcessEvents(1000);
78
79
80
81
82
}
83
84
TEST_F(FirebaseAnalyticsTest, TestSetCollectionEnabled) {
0 commit comments