jest-ex
Version:
A runner and a transformer to simplify (a little bit) your work with Jest.
23 lines (19 loc) • 625 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.process = void 0;
var _index = require("./index");
/* eslint import/prefer-default-export: 0 */
/**
* This is the default implementation of the Jest-Ex Transformer. If you are using the
* Jest-Ex Runner and you set the `addTransformer` flag to true, your Jest configuration
* will point to this file for transforming `js/jsx` files.
* You can also manually point to this file from your Jest configuration.
* @type {JestExTransformer}
* @ignore
*/
const {
process
} = new _index.JestExTransformer();
exports.process = process;