diff --git a/.travis.yml b/.travis.yml index 6ea53af4..0708ef3f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ dist: trusty language: node_js node_js: - - "6" + - "8" sudo: false diff --git a/bin/test-setup.sh b/bin/test-setup.sh index a4af0c51..eb89388b 100755 --- a/bin/test-setup.sh +++ b/bin/test-setup.sh @@ -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 ..