better-crowdin
Version:
Crowdin CLI on steroids
15 lines (13 loc) • 407 B
JavaScript
const path = require('path');
module.exports = {
rootDir: path.resolve(__dirname),
testEnvironment: 'jsdom',
moduleFileExtensions: ['js', 'json'],
globals: {},
testMatch: ['**/test/**/*?(*.)(Test).(js|ts|tsx)'],
transform: {
'^.+\\.js$': '<rootDir>/node_modules/babel-jest',
},
coverageReporters: ['text', 'html', 'lcov'],
coveragePathIgnorePatterns: ['/node_modules/', '/test/'],
};