uvu-jest
Version:
Run the existing jest code with uvu
61 lines (60 loc) • 2.1 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.loadConfig = void 0;
const path = __importStar(require("path"));
const appRootPath = require('app-root-path').path;
const loadConfig = () => {
let config = {};
const result = {
config: {}
};
const rootPath = config.rootPath || appRootPath;
try {
config = require(path.resolve(rootPath, 'uvu-jest.config.js'));
result.config = config;
}
catch (e) {
// ignore
}
// setupFiles
if (config.setupFiles) {
for (const filePath of config.setupFiles) {
const setupFilePath = path.resolve(rootPath, filePath);
require(setupFilePath);
}
}
// snapshotResolver
if (config.snapshotResolver) {
result.snapshotResolver = require(path.resolve(rootPath, config.snapshotResolver));
}
// custom matchers
if (config.customMatchers) {
try {
result.customMatchers = require(config.customMatchers);
}
catch (e) {
console.log(`Cannot find custom matcher package ${config.customMatchers} specified in uvu-jest.config.js`);
}
}
return result;
};
exports.loadConfig = loadConfig;