Kill iOS/iPhone simulator better

Turns out different versions of the iOS simular
have differently named apps, so we now call killall
for both the old and the new name.
This commit is contained in:
Avital Oliver
2014-10-21 13:49:44 -07:00
committed by Emily Stark
parent 6224a749d5
commit 314dcff249

View File

@@ -1781,6 +1781,7 @@ _.extend(IOS.prototype, {
killSimulator: function () {
var execFileSync = require('./utils.js').execFileSync;
execFileSync('killall', ['iOS Simulator']);
execFileSync('killall', ['iPhone Simulator']);
}
});