Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dist: trusty
language: node_js

node_js:
- "6"
- "8"

sudo: false

Expand Down
7 changes: 3 additions & 4 deletions bin/test-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@ DIRECTORY='pouchdb-tests'

if [ ! -d "$DIRECTORY" ]; then
# Control will enter here if $DIRECTORY exists.
git clone --single-branch --branch master \
--depth 500 \
https://github.com/pouchdb/pouchdb.git ${DIRECTORY}
git clone https://github.com/pouchdb/pouchdb.git ${DIRECTORY}
fi

cd "$DIRECTORY"
git checkout de54c62f99d028593059e615b5702131864b6dd4 # 6.4.1
git fetch
git checkout de99825a418bb5ee62c5feafd0046c217941fa9e # 7.0.0
npm install
cd ..