detox
Version:
E2E tests and automation for mobile
22 lines (18 loc) • 462 B
JavaScript
/** @typedef {import('@jest/reporters').Reporter} Reporter */
const {
DetoxIPCReporter,
DetoxReporterDispatcher,
DetoxSummaryReporter,
DetoxVerboseReporter,
} = require('./reporters');
/** @implements {Reporter} */
class DetoxReporter extends DetoxReporterDispatcher {
constructor(globalConfig) {
super(globalConfig, {
DetoxVerboseReporter,
DetoxSummaryReporter,
DetoxIPCReporter,
});
}
}
module.exports = DetoxReporter;