diff options
Diffstat (limited to 'share/www/script/test/replication.js')
-rw-r--r-- | share/www/script/test/replication.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/www/script/test/replication.js b/share/www/script/test/replication.js index b1a8792f..10b3ce73 100644 --- a/share/www/script/test/replication.js +++ b/share/www/script/test/replication.js @@ -23,8 +23,8 @@ couchTests.replication = function(debug) { {source:"http://" + host + "/test_suite_db_a", target:"http://" + host + "/test_suite_db_b"} ] - var dbA = new CouchDB("test_suite_db_a"); - var dbB = new CouchDB("test_suite_db_b"); + var dbA = new CouchDB("test_suite_db_a", {"X-Couch-Full-Commit":"false"}); + var dbB = new CouchDB("test_suite_db_b", {"X-Couch-Full-Commit":"false"}); var numDocs = 10; var xhr; for (var testPair = 0; testPair < dbPairs.length; testPair++) { |