detox-allure2-adapter
Version:
Detox adapter for jest-allure2-reporter
20 lines • 493 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OnViewResult = exports.Espresso = void 0;
class Espresso {
static onView(viewMatcher) {
return new OnViewResult(viewMatcher);
}
}
exports.Espresso = Espresso;
class OnViewResult {
matcher;
constructor(matcher) {
this.matcher = matcher;
}
toJSON() {
return this.matcher.toJSON();
}
}
exports.OnViewResult = OnViewResult;
//# sourceMappingURL=Espresso.js.map