diff --git a/.circleci/config.yml b/.circleci/config.yml index 7bd4b287..a4b1e9b4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,24 +17,24 @@ jobs: - restore_cache: key: dependency-cache-{{ checksum "package.json" }} - restore_cache: - key: sc-4.4.9 + key: sc-4.4.12 - run: name: Install app dependencies command: npm install - run: name: Install saucelabs command: | - npm install saucelabs --no-save # allow sending Watai results to SauceLabs. Don't save in package.json, as this would change its checksum and mess up the cache. + npm install saucelabs@^1.0.1 --no-save # allow sending Watai results to SauceLabs. Don't save in package.json, as this would change its checksum and mess up the cache. if [ -d sc ]; then exit; fi # sc has already been downloaded mkdir sc - wget https://saucelabs.com/downloads/sc-4.4.9-linux.tar.gz --directory-prefix sc - tar -xzf sc/sc-4.4.9-linux.tar.gz --directory sc + wget https://saucelabs.com/downloads/sc-4.4.12-linux.tar.gz --directory-prefix sc + tar -xzf sc/sc-4.4.12-linux.tar.gz --directory sc - save_cache: key: dependency-cache-{{ checksum "package.json" }} paths: - node_modules - save_cache: - key: sc-4.4.9 + key: sc-4.4.12 paths: - sc - run: diff --git a/tests/integration/VariableFixture.js b/tests/integration/VariableFixture.js index b0a0847f..f6cb13e8 100644 --- a/tests/integration/VariableFixture.js +++ b/tests/integration/VariableFixture.js @@ -1,4 +1,4 @@ variableDependencyTitle = "salary" enumVariableTitle = "housing_occupancy_status" enumVariableDefault = /tenant/ -enumVariableDefinition = "Free lodger" +enumVariableDefinition = "Owner"