Update puppeteer chrome config for a11y tests

Change-Id: I9e7940445f18c8a9d01273208545cd60c260279a
This commit is contained in:
bwang 2022-04-07 11:20:42 -05:00
parent a56698c706
commit b51aa00a03
1 changed files with 8 additions and 1 deletions

View File

@ -23,7 +23,14 @@ const config = {
],
includeWarnings: true,
includeNotices: true,
hideElements: '#content'
hideElements: '#content',
chromeLaunchConfig: {
headless: true,
args: [
'--no-sandbox',
'--disable-setuid-sandbox'
]
}
}
};