From 6e7c3b20024c7e90bf8998ba018c6bd2efa0a562 Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Fri, 14 Aug 2020 17:30:28 -0500 Subject: [PATCH] tests(firestore): disable flaky onSnapshot unsubscribe e2e test (#4091) --- packages/firestore/e2e/Query/onSnapshot.e2e.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/firestore/e2e/Query/onSnapshot.e2e.js b/packages/firestore/e2e/Query/onSnapshot.e2e.js index f5ff2857..7fb36182 100644 --- a/packages/firestore/e2e/Query/onSnapshot.e2e.js +++ b/packages/firestore/e2e/Query/onSnapshot.e2e.js @@ -338,7 +338,9 @@ describe('firestore().collection().onSnapshot()', () => { } }); - it('unsubscribes from further updates', async () => { + // FIXME test disabled due to flakiness in CI E2E tests. + // Registered 4 of 3 expected calls once (!?), 3 of 2 expected calls once. + xit('unsubscribes from further updates', async () => { const callback = sinon.spy(); const collection = firebase.firestore().collection('v6/foo/bar7');