From 5fd9d7133bc10ba06461efec9e4d88fe43bfc622 Mon Sep 17 00:00:00 2001 From: russellwheatley Date: Thu, 29 Aug 2024 10:34:35 +0100 Subject: [PATCH] test: skip macOS StorageReference tests --- packages/storage/e2e/StorageReference.e2e.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages/storage/e2e/StorageReference.e2e.js b/packages/storage/e2e/StorageReference.e2e.js index a7a773701d..7690c72f43 100644 --- a/packages/storage/e2e/StorageReference.e2e.js +++ b/packages/storage/e2e/StorageReference.e2e.js @@ -18,6 +18,14 @@ const { PATH, seed, WRITE_ONLY_NAME } = require('./helpers'); describe('storage() -> StorageReference', function () { + if (isCI && Platform.other) { + // Skip these tests on CI for other platforms + // uploadBytesResumable is pretty flaky. Crashes macOS app. + // See: https://github.com/facebook/react-native/issues/32784 + // and: https://github.com/firebase/firebase-js-sdk/issues/5848 + this.skip(); + } + describe('firebase v8 compatibility', function () { before(async function () { await seed(PATH);