UNPKG

appium-instruments

Version:

IOS Instruments + instruments-without-delay launcher used by Appium

10 lines (8 loc) 213 B
'use strict'; module.exports.asyncCbStub = function (success, delay) { return function (cb) { setTimeout(function () { if (success) cb(); else cb(new Error("Simulated crash")); }, delay); }; };