Skip to content

Commit

Permalink
test: skip macOS StorageReference tests
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley committed Aug 29, 2024
1 parent 2731e0c commit 5fd9d71
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/storage/e2e/StorageReference.e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5fd9d71

Please sign in to comment.