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
+20
View File
@@ -0,0 +1,20 @@
const commands = {};
/**
* Remove the particular application package from Simulator.
* It is required that Simulator is in _booted_ state and
* the application with given bundle identifier is already installed.
*
* @param {string} bundleId - Bundle identifier of the application,
* which is going to be removed.
* @throws {Error} If the corresponding simctl subcommand command
* returns non-zero return code.
* @throws {Error} If the `udid` instance property is unset
*/
commands.removeApp = async function removeApp (bundleId) {
await this.exec('uninstall', {
args: [this.requireUdid('uninstall'), bundleId],
});
};
export default commands;