@ramarivera/chofi 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/dist/runtime.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
package/dist/runtime.js
CHANGED
|
@@ -5,7 +5,7 @@ import { ExpoDriver } from "./drivers/expo.js";
|
|
|
5
5
|
import { IdbDriver } from "./drivers/idb.js";
|
|
6
6
|
import { SimulatorStateError, AppNotInstalledError, BuildFailedError, TestsFailedError, ToolOutputError, classifyError } from "./errors.js";
|
|
7
7
|
function isAppAlreadyStopped(output) {
|
|
8
|
-
return /not\s+(?:currently\s+)?running|no such process|could not find process/i.test(output);
|
|
8
|
+
return /not\s+(?:currently\s+)?running|no such process|could not find process|found nothing to terminate/i.test(output);
|
|
9
9
|
}
|
|
10
10
|
export class RuntimeController {
|
|
11
11
|
apple;
|
package/package.json
CHANGED