Skip to content

Commit

Permalink
Merge branch 't/karma-add-chronium' of UoM-Podcast/opencast into develop
Browse files Browse the repository at this point in the history
Pull request opencast#5740

  Allow karma to use Chromium browser
  • Loading branch information
gregorydlogan committed Apr 24, 2024
2 parents de460f8 + d406718 commit ea0ea93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Required:
ffmpeg >= 3.2.4
maven >= 3.6
python
firefox/chrome
firefox/chrome/chromium
unzip
gcc-c++
tar
Expand Down
2 changes: 1 addition & 1 deletion modules/admin-ui-frontend/test/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module.exports = function (config) {
preferHeadless: true,
// limit the list of browsers used by karma
postDetection: (browsers) => {
const allowed = ['Chrome'];
const allowed = ['Chrome', 'Chromium'];
// Karma can't start FirefoxHeadless on Macs
// See https://github.com/opencast/opencast/issues/3894
if (os.platform() !== 'darwin') {
Expand Down

0 comments on commit ea0ea93

Please sign in to comment.