UNPKG

node-express-mongodb-jwt-rest-api-skeleton

Version:

Node.js express.js MongoDB JWT REST API - This is a basic API REST skeleton written on JavaScript using async/await. Great for building a starter web API for your front-end (Android, iOS, Vue, react, angular, or anything that can consume an API)

19 lines (18 loc) 411 B
module.exports = { verbose: true, testEnvironment: 'node', collectCoverage: true, collectCoverageFrom: [ '**/*.js', '!jest.config.js', '!**/data/**', '!**/node_modules/**', '!**/.history/**', '!**/test/**', '!**/coverage/**', '!**/tmp/**' ], coverageDirectory: 'coverage/unit', coverageReporters: ['json', 'text', 'lcov'], testPathIgnorePatterns: ['.history/'] }