@o3r/testing
Version:
The module provides testing (e2e, unit test) utilities to help you build your own E2E pipeline integrating visual testing.
11 lines • 313 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isSelectorSpyCall = isSelectorSpyCall;
/**
* Identifies if spy is a spyResult or spyCall
* @param spy
*/
function isSelectorSpyCall(spy) {
return typeof spy.fakeResult === 'function';
}
//# sourceMappingURL=typings.js.map