Skip to content

Commit 88bc352

Browse files
committed
add --use-gl=desktop flag for Chrome in CI
1 parent 4bca1d8 commit 88bc352

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/jasmine/karma.conf.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,14 +253,15 @@ func.defaultConfig = {
253253
//
254254
// window-size values came from observing default size
255255
//
256-
// '--ignore-gpu-blacklist' allow to test WebGL on CI (!!!)
256+
// '--ignore-gpu-blocklist' allow to test WebGL on CI (!!!)
257257
customLaunchers: {
258258
_Chrome: {
259259
base: 'Chrome',
260260
flags: [
261261
'--touch-events',
262262
'--window-size=' + argv.width + ',' + argv.height,
263-
isCI ? '--ignore-gpu-blacklist' : '',
263+
isCI ? '--ignore-gpu-blocklist' : '',
264+
isCI ? '--use-gl=desktop' : '',
264265
isCI ? '--no-sandbox' : '',
265266
isBundleTest && basename(testFileGlob) === 'no_webgl' ? '--disable-webgl' : ''
266267
]

0 commit comments

Comments
 (0)