@@ -108,9 +108,6 @@ adapters.forEach(function (adapters) {
108108 } ) ;
109109
110110 it ( 'Test pull replication with many changes' , function ( done ) {
111- if ( testUtils . isIE ( ) ) {
112- return done ( ) ;
113- }
114111 var remote = new PouchDB ( dbs . remote ) ;
115112
116113 var numDocs = 201 ;
@@ -160,9 +157,6 @@ adapters.forEach(function (adapters) {
160157 } ) ;
161158
162159 it . skip ( 'pull replication with many changes + a conflict (#2543)' , function ( ) {
163- if ( testUtils . isIE ( ) ) {
164- return Promise . resolve ( ) ;
165- }
166160 var db = new PouchDB ( dbs . name ) ;
167161 var remote = new PouchDB ( dbs . remote ) ;
168162 // simulate 5000 normal commits with two conflicts at the very end
@@ -234,9 +228,6 @@ adapters.forEach(function (adapters) {
234228
235229
236230 it ( 'Test pull replication with many conflicts' , function ( done ) {
237- if ( testUtils . isIE ( ) ) {
238- return done ( ) ;
239- }
240231 var remote = new PouchDB ( dbs . remote ) ;
241232
242233 var numRevs = 200 ; // repro "url too long" error with open_revs
@@ -786,9 +777,6 @@ adapters.forEach(function (adapters) {
786777 } ) ;
787778
788779 it ( '#3136 open revs returned correctly 1' , function ( ) {
789- if ( testUtils . isIE ( ) ) {
790- return Promise . resolve ( ) ;
791- }
792780 var db = new PouchDB ( dbs . name ) ;
793781 var remote = new PouchDB ( dbs . remote ) ;
794782
@@ -840,9 +828,6 @@ adapters.forEach(function (adapters) {
840828 } ) ;
841829
842830 it ( '#3136 open revs returned correctly 2' , function ( ) {
843- if ( testUtils . isIE ( ) ) {
844- return Promise . resolve ( ) ;
845- }
846831 var db = new PouchDB ( dbs . name ) ;
847832 var remote = new PouchDB ( dbs . remote ) ;
848833
@@ -1669,10 +1654,7 @@ adapters.forEach(function (adapters) {
16691654 } ) ;
16701655
16711656 it ( 'Replication with filter that leads to some empty batches (#2689)' ,
1672- function ( done ) {
1673- if ( testUtils . isIE ( ) ) {
1674- return done ( ) ;
1675- }
1657+ function ( done ) {
16761658
16771659 var db = new PouchDB ( dbs . name ) ;
16781660 var remote = new PouchDB ( dbs . remote ) ;
@@ -2140,9 +2122,6 @@ adapters.forEach(function (adapters) {
21402122 } ) ;
21412123
21422124 it ( 'Replicate large number of docs' , function ( done ) {
2143- if ( testUtils . isIE ( ) ) {
2144- return done ( ) ;
2145- }
21462125 var db = new PouchDB ( dbs . name ) ;
21472126 var remote = new PouchDB ( dbs . remote ) ;
21482127 var docs = [ ] ;
@@ -2208,9 +2187,6 @@ adapters.forEach(function (adapters) {
22082187 } ) ;
22092188
22102189 it ( '#909 Filtered replication bails at paging limit' , function ( done ) {
2211- if ( testUtils . isIE ( ) ) {
2212- return done ( ) ;
2213- }
22142190 var db = new PouchDB ( dbs . name ) ;
22152191 var remote = new PouchDB ( dbs . remote ) ;
22162192 var docs = [ ] ;
@@ -2811,9 +2787,6 @@ adapters.forEach(function (adapters) {
28112787 } ) ;
28122788
28132789 it ( "Report write failures if whole saving fails (#942)" , function ( done ) {
2814- if ( testUtils . isIE ( ) ) {
2815- return done ( ) ;
2816- }
28172790 var docs = [ { _id : 'a' , _rev : '1-a' } , { _id : 'b' , _rev : '1-b' } ] ;
28182791 var db = new PouchDB ( dbs . name ) ;
28192792 var remote = new PouchDB ( dbs . remote ) ;
@@ -3339,9 +3312,6 @@ adapters.forEach(function (adapters) {
33393312 } ) ;
33403313
33413314 it ( '#2268 dont stop replication if single unauth' , function ( done ) {
3342- if ( testUtils . isIE ( ) ) {
3343- return done ( ) ;
3344- }
33453315 testUtils . isCouchDB ( function ( isCouchDB ) {
33463316 if ( adapters [ 1 ] !== 'http' || ! isCouchDB ) {
33473317 return done ( ) ;
@@ -3382,9 +3352,6 @@ adapters.forEach(function (adapters) {
33823352 } ) ;
33833353
33843354 it ( '#2268 dont stop replication if many unauth' , function ( done ) {
3385- if ( testUtils . isIE ( ) ) {
3386- return done ( ) ;
3387- }
33883355 testUtils . isCouchDB ( function ( isCouchDB ) {
33893356 if ( adapters [ 1 ] !== 'http' || ! isCouchDB ) {
33903357 return done ( ) ;
@@ -4116,9 +4083,6 @@ adapters.forEach(function (adapters) {
41164083 } ) ;
41174084
41184085 it ( '#2426 doc_ids dont prevent replication' , function ( ) {
4119- if ( testUtils . isIE ( ) ) {
4120- return Promise . resolve ( ) ;
4121- }
41224086 var db = new PouchDB ( dbs . name ) ;
41234087 var remote = new PouchDB ( dbs . remote ) ;
41244088
@@ -4137,9 +4101,6 @@ adapters.forEach(function (adapters) {
41374101 } ) ;
41384102
41394103 it ( '#6809 doc_ids dont prevent one-shot replication' , function ( ) {
4140- if ( testUtils . isIE ( ) ) {
4141- return Promise . resolve ( ) ;
4142- }
41434104 var db = new PouchDB ( dbs . name ) ;
41444105 var remote = new PouchDB ( dbs . remote ) ;
41454106
@@ -4159,9 +4120,6 @@ adapters.forEach(function (adapters) {
41594120
41604121
41614122 it ( '#6809 doc_ids dont prevent one-shot replication' , function ( ) {
4162- if ( testUtils . isIE ( ) ) {
4163- return Promise . resolve ( ) ;
4164- }
41654123 var db = new PouchDB ( dbs . name ) ;
41664124 var remote = new PouchDB ( dbs . remote ) ;
41674125
0 commit comments