first commit

This commit is contained in:
2026-09-08 20:28:54 +08:00
commit 2ada8d3d5a
37380 changed files with 4886169 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
const commands = {};
/**
* Install the particular application package on Simulator.
* It is required that Simulator is in _booted_ state.
*
* @param {string} appPath - Full path to .app package, which is
* going to be installed.
* @throws {Error} If the corresponding simctl subcommand command
* returns non-zero return code.
* @throws {Error} If the `udid` instance property is unset
*/
commands.installApp = async function installApp (appPath) {
await this.exec('install', {
args: [this.requireUdid('install'), appPath],
});
};
export default commands;