File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
cypress/integration/static-root Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,9 @@ describe('Localization', () => {
27
27
it ( 'should use Accept-Language to choose a locale' , ( ) => {
28
28
cy . visit ( '/' , {
29
29
headers : {
30
- 'Accept-Language' : 'fr-FR,fr;q=0.5' ,
30
+ // FIXME: switch back once libredirect bug is fixed
31
+ 'Accept-Language' : 'fr-FR' ,
32
+ // 'Accept-Language': 'fr-FR,fr;q=0.5',
31
33
} ,
32
34
} )
33
35
cy . url ( ) . should ( 'eq' , `${ Cypress . config ( ) . baseUrl } /fr/` )
@@ -39,7 +41,9 @@ describe('Localization', () => {
39
41
cy . visit ( {
40
42
url : '/' ,
41
43
headers : {
42
- 'Accept-Language' : 'fr-FR,fr;q=0.5' ,
44
+ // FIXME: switch back once libredirect bug is fixed
45
+ 'Accept-Language' : 'fr-FR' ,
46
+ // 'Accept-Language': 'fr-FR,fr;q=0.5',
43
47
} ,
44
48
} )
45
49
cy . url ( ) . should ( 'eq' , `${ Cypress . config ( ) . baseUrl } /` )
You can’t perform that action at this time.
0 commit comments