Skip to content

Commit

Permalink
HAXXXXX for e2e debugging DO NOT MERGE
Browse files Browse the repository at this point in the history
  • Loading branch information
sjelin committed Nov 24, 2016
1 parent e01c209 commit f2526b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: node_js
sudo: false
sudo: true
node_js:
- "6"
- "7"
Expand All @@ -17,6 +17,7 @@ addons:

before_install:
- g++-4.8 --version
- sudo apt-get install -y qemu-kvm libvirt-bin ubuntu-vm-builder bridge-utils

script:
- npm run check_format
Expand Down
2 changes: 1 addition & 1 deletion e2e_spec/target_browsers.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export let Linux = ['chrome', 'firefox', 'android'];
export let Linux = ['chrome', /*'firefox',*/ 'android'];
export let Darwin = ['chrome', 'firefox', 'android'];
export let Windows_NT = ['chrome', 'firefox', 'internet explorer'];
2 changes: 1 addition & 1 deletion lib/cmds/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ function startAndroid(
}
logger.info(
'Starting ' + avd + ' on ' + (portArg == null ? 'default port' : 'port ' + portArg));
let child = spawn(path.resolve(sdkPath, 'tools', emuBin), emuArgs, stdio);
let child = spawn(path.resolve(sdkPath, 'tools', emuBin), emuArgs, 'inherit');
child.on('error', (error: Error) => {
logger.warn(avd + ' encountered an error: ' + error);
});
Expand Down

0 comments on commit f2526b1

Please sign in to comment.