diff --git a/.circleci/config.yml b/.circleci/config.yml index 95c92f1e4f..a98d551ee0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -148,6 +148,13 @@ jobs: command: | nvm install v10.13.0 nvm alias default v10.13.0 + - run: + name: Install Chrome + command: | + wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - + sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' + sudo apt-get update + sudo apt-get -y install google-chrome-stable - run: name: Run testnet command: | @@ -155,7 +162,7 @@ jobs: docker-compose up --build -d - run: name: Test - command: npm run serve:dist & npm run test:e2e:browserstack + command: npm run serve:dist & npm run test:e2e:local no_output_timeout: 120 - store_artifacts: path: ./screenshots diff --git a/config.js b/config.js index ca9077b6d4..3905d84898 100644 --- a/config.js +++ b/config.js @@ -18,5 +18,5 @@ export default { graphqlHost: graphql, - e2e: process.env.VUE_APP_E2E + e2e: process.env.VUE_APP_E2E || false } diff --git a/package.json b/package.json index 2079aad440..47d8dac2e3 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,7 @@ "@sentry/integrations": "5.7.1", "apollo-boost": "^0.4.3", "apollo-cache-inmemory": "^1.6.2", + "apollo-link-persisted-queries": "0.2.2", "apollo-link-ws": "1.0.19", "apollo-utilities": "1.3.2", "autosize": "^4.0.2", diff --git a/src/ActionModal/components/ActionModal.vue b/src/ActionModal/components/ActionModal.vue index a15f9e8e2e..0f80d1d5bb 100644 --- a/src/ActionModal/components/ActionModal.vue +++ b/src/ActionModal/components/ActionModal.vue @@ -1,5 +1,5 @@