Skip to content

Commit 1e6b86d

Browse files
author
Brian Chen
committed
ignore integration tests until emulator support
1 parent 13eab6e commit 1e6b86d

File tree

1 file changed

+9
-0
lines changed
  • firebase-firestore/src/androidTest/java/com/google/firebase/firestore

1 file changed

+9
-0
lines changed

firebase-firestore/src/androidTest/java/com/google/firebase/firestore/QueryTest.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
import java.util.Map;
4343
import java.util.concurrent.Semaphore;
4444
import org.junit.After;
45+
import org.junit.Ignore;
4546
import org.junit.Test;
4647
import org.junit.runner.RunWith;
4748

@@ -486,6 +487,8 @@ public void testQueriesFireFromCacheWhenOffline() {
486487
listener.remove();
487488
}
488489

490+
// TODO(ne-queries): Re-enable once emulator support is added to CI.
491+
@Ignore
489492
@Test
490493
public void testQueriesCanUseNotEqualFilters() {
491494
Map<String, Object> docA = map("zip", 98101L);
@@ -542,6 +545,8 @@ public void testQueriesCanUseNotEqualFilters() {
542545
Lists.newArrayList(expectedDocsMap.values()), querySnapshotToValues(snapshot));
543546
}
544547

548+
// TODO(ne-queries): Re-enable once emulator support is added to CI.
549+
@Ignore
545550
@Test
546551
public void testQueriesCanUseNotEqualFiltersWithDocIds() {
547552
Map<String, String> docA = map("key", "aa");
@@ -617,6 +622,8 @@ public void testQueriesCanUseInFiltersWithDocIds() {
617622
assertEquals(asList(docA, docB), querySnapshotToValues(docs));
618623
}
619624

625+
// TODO(ne-queries): Re-enable once emulator support is added to CI.
626+
@Ignore
620627
@Test
621628
public void testQueriesCanUseNotInFilters() {
622629
Map<String, Object> docA = map("zip", 98101L);
@@ -676,6 +683,8 @@ public void testQueriesCanUseNotInFilters() {
676683
assertEquals(Lists.newArrayList(expectedDocsMap.values()), querySnapshotToValues(snapshot));
677684
}
678685

686+
// TODO(ne-queries): Re-enable once emulator support is added to CI.
687+
@Ignore
679688
@Test
680689
public void testQueriesCanUseNotInFiltersWithDocIds() {
681690
Map<String, String> docA = map("key", "aa");

0 commit comments

Comments
 (0)