diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 1b336a280..850dbd80f 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -123,6 +123,7 @@ steps: - npm config set "//registry.npmjs.org/:_authToken" $${NPM_TOKEN} - echo "--- Install dependencies" - PLAYWRIGHT_BROWSERS_PATH=$HOME/pw-browsers PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=0 HUSKY=0 yarn install --immutable + - apt install chromium-browser - 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 6f6df8de1..84d974da3 100644 --- a/packages/consent/consent-tools-integration-tests/wdio.conf.local.ts +++ b/packages/consent/consent-tools-integration-tests/wdio.conf.local.ts @@ -54,7 +54,6 @@ export const config: Options.Testrunner = { maxInstances: 5, browserName: 'chrome', 'goog:chromeOptions': { - args: ['--no-sandbox', '--headless'], binary: chromium.executablePath(), }, acceptInsecureCerts: true,