Skip to content

Commit ea851e7

Browse files
committed
test(firestore, other): temporarily disable rollback test
this was flaky in the main suite and the second transaction suite is also flaky See issue #8267
1 parent 9874235 commit ea851e7

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Diff for: packages/firestore/e2e/SecondDatabase/second.Transation.e2e.js

+10
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,11 @@ describe('Second Database', function () {
344344
});
345345

346346
it('should roll back any updates that failed', async function () {
347+
// FIXME issue 8267
348+
if (Platform.other) {
349+
this.skip();
350+
}
351+
347352
const docRef = firestore.doc(`${COLLECTION}/transactions/transaction/rollback`);
348353

349354
await docRef.set({
@@ -732,6 +737,11 @@ describe('Second Database', function () {
732737
});
733738

734739
it('should roll back any updates that failed', async function () {
740+
// FIXME issue 8267
741+
if (Platform.other) {
742+
this.skip();
743+
}
744+
735745
const { runTransaction, doc, getDoc, setDoc } = firestoreModular;
736746
const db = firestore;
737747

0 commit comments

Comments
 (0)