fix(tests): disable mobile emulation so benchmarks run on current chrome
Workaround for #2309
This commit is contained in:
parent
fde65c7e88
commit
b071b66b45
|
@ -72,7 +72,10 @@ var BROWSER_CAPS = {
|
||||||
ChromeDesktop: {
|
ChromeDesktop: {
|
||||||
browserName: 'chrome',
|
browserName: 'chrome',
|
||||||
chromeOptions: mergeInto(CHROME_OPTIONS, {
|
chromeOptions: mergeInto(CHROME_OPTIONS, {
|
||||||
'mobileEmulation': CHROME_MOBILE_EMULATION
|
// TODO(tbosch): when we are using mobile emulation on
|
||||||
|
// chrome 44.0 beta, clicks are no more working.
|
||||||
|
// see https://github.com/angular/angular/issues/2309
|
||||||
|
// 'mobileEmulation': CHROME_MOBILE_EMULATION
|
||||||
}),
|
}),
|
||||||
loggingPrefs: {
|
loggingPrefs: {
|
||||||
performance: 'ALL',
|
performance: 'ALL',
|
||||||
|
|
Loading…
Reference in New Issue