From 5214bc7460e3ef40d413678e996bbc2dceeac98e Mon Sep 17 00:00:00 2001 From: Giovanni Pellerano Date: Wed, 23 Oct 2024 14:46:48 +0200 Subject: [PATCH] [ci] Modify npm configuration in order to run tests with chromium by default --- client/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/package.json b/client/package.json index 2e846102cb..8d99aa8a83 100644 --- a/client/package.json +++ b/client/package.json @@ -2,7 +2,7 @@ "name": "globaleaks", "version": "5.0.18", "scripts": { - "test": "npx cypress run && npx nyc report --reporter=lcov --report-dir=./cypress/coverage --reporter=text-summary --browser electron", + "test": "npx cypress run --browser=chromium && npx nyc report --reporter=lcov --report-dir=./cypress/coverage --reporter=text-summary --browser electron", "eslint": "ng lint", "stylelint": "npx stylelint 'app/css/**/*.css'" },