| commit | e622bb274350cb04d21998f1bf9732761820e74d | [log] [tgz] |
|---|---|---|
| author | Will Holley <willholley@gmail.com> | Fri Dec 19 17:25:08 2014 +0000 |
| committer | Dale Harvey <dale@arandomurl.com> | Sat Dec 20 10:11:26 2014 +0100 |
| tree | 6b1b497db44be966340b21471375af81545f2a98 | |
| parent | 62155b92d6163056e8a2de5cb305887411923be6 [diff] |
(#136) - Skip all_docs.keys assertions which fail under CouchDB 2.0 CouchDB 2.0 breaks compatiblity around query parameter validation for _all_docs. Skip the tests which assert this until the bugs are fixed. Jira ticket is https://issues.apache.org/jira/browse/COUCHDB-2523
PouchDB was written to help web developers build applications that work as well offline as well as they do online, applications save data locally so the user can use all the features of an app even while offline and synchronise the data between clients so they have up to date data wherever they go.
PouchDB is a free open source project, written in Javascript by these wonderful contributors and inspired by Apache CouchDB.
To get started using PouchDB check out our Documentation and the API Documentation.
If you want to get involved then check out the contributing guide
var db = new PouchDB('dbname'); db.put({ _id: 'dave@gmail.com', name: 'David', age: 66 }); db.changes().on('change', function() { console.log('Ch-Ch-Changes'); }); db.replicate.to('http://example.com/mydb');