UNPKG

moar-js

Version:

Simple JavaScript files I use across projects

27 lines (25 loc) 513 B
const {preset} = require('./jest') module.exports = { ...preset(), setupFilesAfterEnv: [ './tests/http/setup-http', './jest/timeout-quick', ], testMatch: [ '**/tests/**/*.test.js', ], collectCoverageFrom: [ // '**/src/**/*.{js,jsx}', '**', '!**/tests/**', '!jest.*', '!.eslint*', ], // projects: [ // '<rootDir>/tests/axios', // '<rootDir>/tests/core', // '<rootDir>/tests/fusto', // '<rootDir>/tests/http', // '<rootDir>/tests/lnd', // ], }