2
0
mirror of https://github.com/thumbsup/thumbsup synced 2024-11-11 07:10:26 +00:00
thumbsup/test/helpers.js

13 lines
326 B
JavaScript
Raw Normal View History

const path = require('path')
const requireAll = require('require-all')
// require all source code
// so that the coverage report is accurate
requireAll(path.join(__dirname, '..', 'src'))
// capture all unhandled rejected promises
// and ensure the current test fails
process.on('unhandledRejection', err => {
throw err
})