@@ -19,23 +19,21 @@ if (process.env.HEADLESS === 'true') {
1919 ffArgs . push ( '--headless' ) ;
2020}
2121
22- const ffExcludes = [
23- 'specs/**/iFrameApi*.spec.ts' , // FF does not support uploading files (uploadFile)
24-
25- // FF does not support setting a file as mic input, no dominant speaker events
26- 'specs/3way/activeSpeaker.spec.ts' ,
27- 'specs/3way/startMuted.spec.ts' , // bad audio levels
28- 'specs/4way/desktopSharing.spec.ts' ,
29- 'specs/4way/lastN.spec.ts' ,
30-
31- // when unmuting a participant, we see the presence in debug logs imidiately,
32- // but for 15 seconds it is not received/processed by the client
33- // (also menu disappears after clicking one of the moderation option, does not happen manually)
34- 'specs/3way/audioVideoModeration.spec.ts'
35- ] ;
36-
3722const mergedConfig = merge ( defaultConfig , {
38- ffExcludes,
23+ exclude : [
24+ 'specs/**/iFrameApi*.spec.ts' , // FF does not support uploading files (uploadFile)
25+
26+ // FF does not support setting a file as mic input, no dominant speaker events
27+ 'specs/3way/activeSpeaker.spec.ts' ,
28+ 'specs/3way/startMuted.spec.ts' , // bad audio levels
29+ 'specs/4way/desktopSharing.spec.ts' ,
30+ 'specs/4way/lastN.spec.ts' ,
31+
32+ // when unmuting a participant, we see the presence in debug logs imidiately,
33+ // but for 15 seconds it is not received/processed by the client
34+ // (also the menu disappears after clicking one of the moderation options, does not happen manually)
35+ 'specs/3way/audioVideoModeration.spec.ts'
36+ ] ,
3937 capabilities : {
4038 p1 : {
4139 capabilities : {
@@ -47,30 +45,6 @@ const mergedConfig = merge(defaultConfig, {
4745 } ,
4846 acceptInsecureCerts : process . env . ALLOW_INSECURE_CERTS === 'true'
4947 }
50- } ,
51- p2 : {
52- capabilities : {
53- 'wdio:exclude' : [
54- ...defaultConfig . capabilities . p2 . capabilities [ 'wdio:exclude' ] ,
55- ...ffExcludes
56- ]
57- }
58- } ,
59- p3 : {
60- capabilities : {
61- 'wdio:exclude' : [
62- ...defaultConfig . capabilities . p3 . capabilities [ 'wdio:exclude' ] ,
63- ...ffExcludes
64- ]
65- }
66- } ,
67- p4 : {
68- capabilities : {
69- 'wdio:exclude' : [
70- ...defaultConfig . capabilities . p4 . capabilities [ 'wdio:exclude' ] ,
71- ...ffExcludes
72- ]
73- }
7448 }
7549 }
7650} , { clone : false } ) ;
0 commit comments