@tdd-buffet/jest-config

Awesome jest config

Usage no npm install needed!

<script type="module">
  import tddBuffetJestConfig from 'https://cdn.skypack.dev/@tdd-buffet/jest-config';
</script>

README

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
};