diff --git a/.circleci/config.yml b/.circleci/config.yml index 54656c08828d..634d6d2a7e51 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1018,7 +1018,7 @@ jobs: command: | if .circleci/scripts/test-run-e2e.sh then - yarn test:e2e:firefox:snaps --retries 2 --debug + yarn test:e2e:firefox:snaps --retries 2 --debug --build-type=flask fi no_output_timeout: 20m - run: @@ -1055,7 +1055,7 @@ jobs: command: | if .circleci/scripts/test-run-e2e.sh then - yarn test:e2e:chrome:snaps --retries 2 --debug + yarn test:e2e:chrome:snaps --retries 2 --debug --build-type=flask fi no_output_timeout: 20m - run: diff --git a/test/e2e/helpers.js b/test/e2e/helpers.js index 194bdaaf4971..edad18e5318b 100644 --- a/test/e2e/helpers.js +++ b/test/e2e/helpers.js @@ -134,7 +134,7 @@ async function withFixtures(options, testSuite) { console.log( `[driver] Called '${prop}' with arguments ${JSON.stringify( args, - )}`, + ).slice(0, 200)}`, // limit the length of the log entry to 200 characters ); return originalProperty.bind(target)(...args); }; diff --git a/test/e2e/run-all.js b/test/e2e/run-all.js index 6c2811b1506f..0882ad273b44 100644 --- a/test/e2e/run-all.js +++ b/test/e2e/run-all.js @@ -126,7 +126,7 @@ async function main() { } } - // These tests should only be ran on Flask for now. + // These tests should only be run on Flask for now. if (buildType !== 'flask') { const filteredTests = [ 'settings-add-snap-account-toggle.spec.js',