Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: bump e2e test runner to React Native 0.74.1 #7985

Merged
merged 20 commits into from
Sep 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test(storage): fix e2e test setup
  • Loading branch information
russellwheatley committed Aug 27, 2024
commit 05ef09a9c60cb80746ca5f400ad2779e0fda4fa6
11 changes: 3 additions & 8 deletions packages/storage/e2e/StorageReference.e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@ const { PATH, seed, WRITE_ONLY_NAME } = require('./helpers');
describe('storage() -> StorageReference', function () {
describe('firebase v8 compatibility', function () {
before(async function () {
if (!Platform.other) {
// Only for iOS
await seed(PATH);
}
await seed(PATH);
});

describe('toString()', function () {
Expand Down Expand Up @@ -701,10 +698,8 @@ describe('storage() -> StorageReference', function () {
const secondStorageBucket = 'gs://react-native-firebase-testing';

before(async function () {
if (!Platform.other) {
// Only for iOS
await seed(PATH);
}
await seed(PATH);

const { getStorage } = storageModular;
secondStorage = getStorage(firebase.app(), secondStorageBucket);
});
Expand Down
Loading