fix config.

This commit is contained in:
Jason Kulatunga 2022-10-14 09:16:53 -07:00
parent 22713835ef
commit c15e86d77f
1 changed files with 8 additions and 3 deletions

View File

@ -46,9 +46,14 @@ module.exports = function(config) {
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
browsers: ['ChromeHeadlessCI'],
singleRun: false,
restartOnFileChange: true
restartOnFileChange: true,
customLaunchers: {
ChromeHeadlessCI: {
base: 'ChromeHeadless',
flags: ['--no-sandbox', '--disable-gpu']
}
},
});
};