Skip to content

Latest commit

 

History

History

jest-config

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Awesome jest config for TypeScript projects

Build Status codecov


Install

npm install @tdd-buffet/jest-config

Usage

The config focuses on providing a good developer experience with TypeScript. Tests are type checked before they are run and certain harmful options in tsconfing.json files are turned off. You can extend the config and override it as you see fit.

const baseConfig = require('@tdd-buffet/jest-config');

module.exports = {
  ...baseConfig
};