Skip to content
Snippets Groups Projects
jest.config.js 152 B
Newer Older
Orlando Piñero's avatar
Orlando Piñero committed
module.exports = {
    testEnvironment: 'node',
    collectCoverage: true,
    reporters: ["default", "jest-junit"],
    testMatch: ["**/*.test.js"]
};