@@ -219,7 +219,8 @@ describe('firestore()', function () {
219
219
220
220
describe ( 'settings' , function ( ) {
221
221
describe ( 'serverTimestampBehavior' , function ( ) {
222
- it ( "handles 'estimate'" , async function ( ) {
222
+ // TODO flakey in new Jet setup since it conflicts with the modular tests
223
+ xit ( "handles 'estimate'" , async function ( ) {
223
224
// TODO(ehesp): Figure out how to call settings on other.
224
225
if ( Platform . other ) {
225
226
// Not supported on web lite sdk
@@ -246,7 +247,8 @@ describe('firestore()', function () {
246
247
await ref . delete ( ) ;
247
248
} ) ;
248
249
249
- it ( "handles 'previous'" , async function ( ) {
250
+ // TODO flakey in new Jet setup since it conflicts with the modular tests
251
+ xit ( "handles 'previous'" , async function ( ) {
250
252
// TODO(ehesp): Figure out how to call settings on other.
251
253
if ( Platform . other ) {
252
254
// Not supported on web lite sdk
@@ -303,7 +305,8 @@ describe('firestore()', function () {
303
305
await ref . delete ( ) ;
304
306
} ) ;
305
307
306
- it ( "handles 'none'" , async function ( ) {
308
+ // works in isolation but not in suite
309
+ xit ( "handles 'none'" , async function ( ) {
307
310
// TODO(ehesp): Figure out how to call settings on other.
308
311
if ( Platform . other ) {
309
312
return ;
@@ -644,8 +647,12 @@ describe('firestore()', function () {
644
647
645
648
describe ( 'settings' , function ( ) {
646
649
describe ( 'serverTimestampBehavior' , function ( ) {
647
- // TODO flakey in new Jet setup since it conflicts with the v8 tests
648
- xit ( "handles 'estimate'" , async function ( ) {
650
+ it ( "handles 'estimate'" , async function ( ) {
651
+ // TODO(ehesp): Figure out how to call settings on other.
652
+ if ( Platform . other ) {
653
+ // Not supported on web lite sdk
654
+ return ;
655
+ }
649
656
const { initializeFirestore, doc, onSnapshot, setDoc, deleteDoc } = firestoreModular ;
650
657
651
658
const db = await initializeFirestore ( firebase . app ( ) , {
@@ -675,6 +682,11 @@ describe('firestore()', function () {
675
682
} ) ;
676
683
677
684
it ( "handles 'previous'" , async function ( ) {
685
+ // TODO(ehesp): Figure out how to call settings on other.
686
+ if ( Platform . other ) {
687
+ // Not supported on web lite sdk
688
+ return ;
689
+ }
678
690
const { initializeFirestore, doc, onSnapshot, setDoc, deleteDoc, snapshotEqual } =
679
691
firestoreModular ;
680
692
@@ -734,8 +746,12 @@ describe('firestore()', function () {
734
746
await deleteDoc ( ref ) ;
735
747
} ) ;
736
748
737
- // FIXME: works in isolation but not in suite
738
- xit ( "handles 'none'" , async function ( ) {
749
+ it ( "handles 'none'" , async function ( ) {
750
+ // TODO(ehesp): Figure out how to call settings on other.
751
+ if ( Platform . other ) {
752
+ // Not supported on web lite sdk
753
+ return ;
754
+ }
739
755
const { initializeFirestore, doc, onSnapshot, setDoc, deleteDoc } = firestoreModular ;
740
756
741
757
const db = await initializeFirestore ( firebase . app ( ) , {
0 commit comments