UNPKG

appium-xcuitest-driver

Version:

Appium driver for iOS using XCUITest for backend

17 lines 515 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.XCRUN = void 0; exports.requireXcrun = requireXcrun; const support_1 = require("appium/support"); const XCRUN = 'xcrun'; exports.XCRUN = XCRUN; async function requireXcrun() { try { return await support_1.fs.which(XCRUN); } catch { throw new Error(`${XCRUN} has not been found in PATH. ` + `Please make sure XCode development tools are installed`); } } //# sourceMappingURL=xcrun.js.map