diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 550545b0b..1bbb02930 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -122,7 +122,8 @@ steps: commands: - npm config set "//registry.npmjs.org/:_authToken" $${NPM_TOKEN} - echo "--- Install dependencies" - - HUSKY=0 yarn install --immutable + - PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 yarn install --immutable + - PLAYWRIGHT_BROWSERS_PATH=$HOME/pw-browsers npx playwright install - echo "+++ Run Browser integration tests :pray:" - yarn turbo run --filter='consent-tools-integration-tests' test:intg plugins: diff --git a/packages/consent/consent-tools-integration-tests/wdio.conf.local.ts b/packages/consent/consent-tools-integration-tests/wdio.conf.local.ts index 84d974da3..7032d7dd1 100644 --- a/packages/consent/consent-tools-integration-tests/wdio.conf.local.ts +++ b/packages/consent/consent-tools-integration-tests/wdio.conf.local.ts @@ -52,6 +52,7 @@ export const config: Options.Testrunner = { capabilities: [ { maxInstances: 5, + port: 4444, browserName: 'chrome', 'goog:chromeOptions': { binary: chromium.executablePath(),