Skip to content

Commit

Permalink
test(firestore, other): temporarily disable rollback test
Browse files Browse the repository at this point in the history
this was flaky in the main suite and the second transaction suite
is also flaky

See issue #8267
  • Loading branch information
mikehardy committed Feb 20, 2025
1 parent 9874235 commit ea851e7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/firestore/e2e/SecondDatabase/second.Transation.e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,11 @@ describe('Second Database', function () {
});

it('should roll back any updates that failed', async function () {
// FIXME issue 8267
if (Platform.other) {
this.skip();
}

const docRef = firestore.doc(`${COLLECTION}/transactions/transaction/rollback`);

await docRef.set({
Expand Down Expand Up @@ -732,6 +737,11 @@ describe('Second Database', function () {
});

it('should roll back any updates that failed', async function () {
// FIXME issue 8267
if (Platform.other) {
this.skip();
}

const { runTransaction, doc, getDoc, setDoc } = firestoreModular;
const db = firestore;

Expand Down

0 comments on commit ea851e7

Please sign in to comment.