From 8645acf75530fa381fe8fc137bdf894eb197bea1 Mon Sep 17 00:00:00 2001 From: Denver Coneybeare Date: Mon, 6 Apr 2020 16:05:11 -0400 Subject: [PATCH] Remove 'no-android' tags from spec tests for limbo resolution throttling. --- packages/firestore/test/unit/specs/limbo_spec.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/firestore/test/unit/specs/limbo_spec.test.ts b/packages/firestore/test/unit/specs/limbo_spec.test.ts index 322549dad07..af5d9c6183d 100644 --- a/packages/firestore/test/unit/specs/limbo_spec.test.ts +++ b/packages/firestore/test/unit/specs/limbo_spec.test.ts @@ -644,7 +644,7 @@ describeSpec('Limbo Documents:', [], () => { 'Limbo resolution throttling with all results at once from watch', // TODO(dconeybe) Remove the 'no-*' tags as these platforms implement limbo // resolution throttling. - ['no-android', 'no-ios'], + ['no-ios'], () => { const query = Query.atPath(path('collection')); const doc1 = doc('collection/a', 1000, { key: 'a' }); @@ -721,7 +721,7 @@ describeSpec('Limbo Documents:', [], () => { 'Limbo resolution throttling with results one at a time from watch', // TODO(dconeybe) Remove the 'no-*' tags as these platforms implement limbo // resolution throttling. - ['no-android', 'no-ios'], + ['no-ios'], () => { const query = Query.atPath(path('collection')); const doc1 = doc('collection/a', 1000, { key: 'a' }); @@ -801,7 +801,7 @@ describeSpec('Limbo Documents:', [], () => { 'Limbo resolution throttling when a limbo listen is rejected.', // TODO(dconeybe) Remove the 'no-*' tags as these platforms implement limbo // resolution throttling. - ['no-android', 'no-ios'], + ['no-ios'], () => { const query = Query.atPath(path('collection')); const doc1 = doc('collection/a', 1000, { key: 'a' }); @@ -854,7 +854,7 @@ describeSpec('Limbo Documents:', [], () => { 'Limbo resolution throttling with existence filter mismatch', // TODO(dconeybe) Remove the 'no-*' tags as these platforms implement limbo // resolution throttling. - ['no-android', 'no-ios'], + ['no-ios'], () => { const query = Query.atPath(path('collection')); const docA1 = doc('collection/a1', 1000, { key: 'a1' });