11
11
// If a category becomes empty (e.g. BS and required), then the corresponding job must be commented
12
12
// out in the CI configuration.
13
13
const config = {
14
- 'Android10' : { unitTest : { target : 'SL' , required : true } } ,
15
14
'Android11' : { unitTest : { target : 'SL' , required : true } } ,
15
+ 'Android12' : { unitTest : { target : 'SL' , required : true } } ,
16
16
} ;
17
17
18
18
/** Whether browsers should be remotely acquired in debug mode. */
19
19
const debugMode = false ;
20
20
21
+ // Specific platform configuration can be found at:
22
+ // https://saucelabs.com/platform/platform-configurator
21
23
const customLaunchers = {
22
- 'SL_ANDROID10 ' : {
24
+ 'SL_ANDROID11 ' : {
23
25
base : 'SauceLabs' ,
24
26
browserName : 'Chrome' ,
25
27
platformName : 'Android' ,
26
- platformVersion : '10 .0' ,
28
+ platformVersion : '11 .0' ,
27
29
deviceName : 'Google Pixel 3a GoogleAPI Emulator' ,
28
30
appiumVersion : '1.20.2' ,
29
31
extendedDebugging : debugMode ,
30
32
} ,
31
- 'SL_ANDROID11 ' : {
33
+ 'SL_ANDROID12 ' : {
32
34
base : 'SauceLabs' ,
33
35
browserName : 'Chrome' ,
34
36
platformName : 'Android' ,
35
- platformVersion : '11 .0' ,
36
- deviceName : 'Google Pixel 3a GoogleAPI Emulator' ,
37
- appiumVersion : '1.20.2 ' ,
37
+ platformVersion : '12 .0' ,
38
+ deviceName : 'Google Pixel 4a (5G) GoogleAPI Emulator' ,
39
+ appiumVersion : '1.22.1 ' ,
38
40
extendedDebugging : debugMode ,
39
41
} ,
40
42
} ;
@@ -45,8 +47,8 @@ const sauceAliases = {
45
47
} ;
46
48
47
49
module . exports = {
48
- customLaunchers : customLaunchers ,
49
- sauceAliases : sauceAliases ,
50
+ customLaunchers : customLaunchers ,
51
+ sauceAliases : sauceAliases ,
50
52
} ;
51
53
52
54
function buildConfiguration ( type , target , required ) {
0 commit comments