Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion android.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ var Android = {
verbose('start(' + avdName + ')');
return spawnWaitFor(
'emulator -verbose -avd "' + avdName + '"',
/emulator: control console listening on port (\d+), ADB on port \d+/
/emulator: Serial number of this emulator \(for ADB\): emulator-(\d+)/
).then(function(result) {
return {
process: result.process,
Expand Down
4 changes: 2 additions & 2 deletions spec/android-start-or-create-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ describe('Android', function() {
var obj = {
process: fakeProcess = {},
matches: [
'emulator: control console listening on port (5554), ADB on port 5555',
'emulator: Serial number of this emulator (for ADB): emulator-5554',
'5554',
],
line: 'emulator: control console listening on port (5554), ADB on port 5555',
line: 'emulator: Serial number of this emulator (for ADB): emulator-5554',
};

return bluebird.resolve(obj);
Expand Down