test: use puppeteer in aio build instead to remove CI_CHROMEDRIVER_VERSION_ARG (#35049)
PR Close #35049
This commit is contained in:

committed by
Kara Erickson

parent
414dd95a0b
commit
afdd405995
@ -14,6 +14,11 @@ exports.config = {
|
||||
suite: 'full',
|
||||
capabilities: {
|
||||
browserName: 'chrome',
|
||||
chromeOptions: process.env['CI'] ? {
|
||||
binary: require('puppeteer').executablePath(),
|
||||
// See /integration/README.md#browser-tests for more info on these args
|
||||
args: ['--no-sandbox', '--headless', '--disable-gpu', '--disable-dev-shm-usage', '--hide-scrollbars', '--mute-audio']
|
||||
} : {},
|
||||
},
|
||||
directConnect: true,
|
||||
framework: 'jasmine',
|
||||
|
Reference in New Issue
Block a user