From 72dccca00ac2b64b3ecb2022905b26a0b29b9d51 Mon Sep 17 00:00:00 2001 From: MrChocolatine <47531779+MrChocolatine@users.noreply.github.com> Date: Sun, 29 Oct 2023 16:06:11 +0000 Subject: [PATCH] TEMP testem config Chromium --- testem.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/testem.js b/testem.js index 2817c3a..ae3f3df 100644 --- a/testem.js +++ b/testem.js @@ -3,13 +3,16 @@ module.exports = { test_page: 'tests/index.html?hidepassed', disable_watching: true, - launch_in_ci: ['Chrome'], - launch_in_dev: ['Chrome'], + launch_in_ci: ['Chromium'], + launch_in_dev: ['Chromium'], + browser_paths: { + Chromium: '/Applications/Chromium.app/Contents/MacOS/Chromium', + }, browser_start_timeout: 120, browser_args: { - Chrome: { + Chromium: { ci: [ - // --no-sandbox is needed when running Chrome inside a container + // --no-sandbox is needed when running Chromium inside a container process.env.CI ? '--no-sandbox' : null, '--headless', '--disable-dev-shm-usage',