@@ -142,9 +142,6 @@ class BundleTest : public FirestoreIntegrationTest {
142
142
};
143
143
144
144
TEST_F (BundleTest, CanLoadBundlesWithoutProgressUpdates) {
145
- GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
146
- " Actions and needs to be investigated (b/233751585)" ;
147
-
148
145
Firestore* db = TestFirestore ();
149
146
auto bundle = CreateTestBundle (db);
150
147
@@ -155,9 +152,6 @@ TEST_F(BundleTest, CanLoadBundlesWithoutProgressUpdates) {
155
152
}
156
153
157
154
TEST_F (BundleTest, CanLoadBundlesWithProgressUpdates) {
158
- GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
159
- " Actions and needs to be investigated (b/233751585)" ;
160
-
161
155
Firestore* db = TestFirestore ();
162
156
auto bundle = CreateTestBundle (db);
163
157
@@ -186,9 +180,6 @@ TEST_F(BundleTest, CanLoadBundlesWithProgressUpdates) {
186
180
}
187
181
188
182
TEST_F (BundleTest, CanDeleteFirestoreFromProgressUpdate) {
189
- GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
190
- " Actions and needs to be investigated (b/233751585)" ;
191
-
192
183
Firestore* db = TestFirestore ();
193
184
auto bundle = CreateTestBundle (db);
194
185
@@ -225,9 +216,6 @@ TEST_F(BundleTest, CanDeleteFirestoreFromProgressUpdate) {
225
216
}
226
217
227
218
TEST_F (BundleTest, LoadBundlesForASecondTimeSkips) {
228
- GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
229
- " Actions and needs to be investigated (b/233751585)" ;
230
-
231
219
// TODO(wuandy): This test fails on Windows CI, but
232
220
// local run is fine. We need to figure out why and re-enable it.
233
221
SKIP_TEST_ON_WINDOWS;
@@ -256,9 +244,6 @@ TEST_F(BundleTest, LoadBundlesForASecondTimeSkips) {
256
244
}
257
245
258
246
TEST_F (BundleTest, LoadInvalidBundlesShouldFail) {
259
- GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
260
- " Actions and needs to be investigated (b/233751585)" ;
261
-
262
247
// TODO(wuandy): This test fails on Windows CI, but
263
248
// local run is fine. We need to figure out why and re-enable it.
264
249
SKIP_TEST_ON_WINDOWS;
@@ -288,9 +273,6 @@ TEST_F(BundleTest, LoadInvalidBundlesShouldFail) {
288
273
}
289
274
290
275
TEST_F (BundleTest, LoadBundleWithDocumentsAlreadyPulledFromBackend) {
291
- GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
292
- " Actions and needs to be investigated (b/233751585)" ;
293
-
294
276
// TODO(wuandy, b/189477267): This test fails on Windows CI, but
295
277
// local run is fine. We need to figure out why and re-enable it.
296
278
SKIP_TEST_ON_WINDOWS;
@@ -337,9 +319,6 @@ TEST_F(BundleTest, LoadBundleWithDocumentsAlreadyPulledFromBackend) {
337
319
}
338
320
339
321
TEST_F (BundleTest, LoadedDocumentsShouldNotBeGarbageCollectedRightAway) {
340
- GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
341
- " Actions and needs to be investigated (b/233751585)" ;
342
-
343
322
// TODO(wuandy, b/189477267): This test fails on Windows CI, but
344
323
// local run is fine. We need to figure out why and re-enable it.
345
324
SKIP_TEST_ON_WINDOWS;
@@ -364,9 +343,6 @@ TEST_F(BundleTest, LoadedDocumentsShouldNotBeGarbageCollectedRightAway) {
364
343
}
365
344
366
345
TEST_F (BundleTest, LoadDocumentsFromOtherProjectsShouldFail) {
367
- GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
368
- " Actions and needs to be investigated (b/233751585)" ;
369
-
370
346
Firestore* db = TestFirestore ();
371
347
auto bundle = CreateBundle (" other-project" );
372
348
std::vector<LoadBundleTaskProgress> progresses;
@@ -387,9 +363,6 @@ TEST_F(BundleTest, LoadDocumentsFromOtherProjectsShouldFail) {
387
363
}
388
364
389
365
TEST_F (BundleTest, GetInvalidNamedQuery) {
390
- GTEST_SKIP () << " Bundle tests fails often on Android and iOS in GitHub "
391
- " Actions and needs to be investigated (b/233751585)" ;
392
-
393
366
Firestore* db = TestFirestore ();
394
367
{
395
368
auto future = db->NamedQuery (" DOES_NOT_EXIST" );
0 commit comments