-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Finish monorepo merge: http-pouchdb #236
Conversation
Version 1.1.1
Update pouchdb to version 6.1.1 🚀
Update mocha to version 3.2.0 🚀
Update browserify to version 14.0.0 🚀
@@ -68,7 +68,8 @@ | |||
"serve-favicon": "~2.3.2", | |||
"tail": "^1.2.1", | |||
"uuid": "^3.0.1", | |||
"wordwrap": "1.0.0" | |||
"wordwrap": "1.0.0", | |||
"xhr2": "^0.1.3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
xhr2
is a new dependency for http-pouchdb: https://github.com/pouchdb/http-pouchdb/blob/9b28231f2c40795c045956a6a4b0f3f974c661c9/package.json#L51
|
||
return users.info().then(function (info) { | ||
info.should.have.property('db_name'); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the constructor
tests are different from the original: https://github.com/pouchdb/http-pouchdb/blob/9b28231f2c40795c045956a6a4b0f3f974c661c9/test/test.js#L25-L39
- For the unit tests, we start our own
pouchdb-server
so thedata_size
does not exist, hence I just check fordb_name
-new HTTPPouchDB('http://localhost:5984/_replicator')
is valid with the latest PouchDB, it just encodes all the slashes etc. If that is an error, it’s outside of the scope ofhttp-pouchdb
@gr2m Awesome +1 |
thanks for the review @garrensmith, I’ll move forward then :) |
part of #197