项目作者: DSchau

项目描述 :
A preset for jest (utilizing ts-jest) that eliminates the need for manual configuration of jest settings
高级语言: TypeScript
项目地址: git://github.com/DSchau/jest-preset-typescript.git
创建时间: 2017-10-05T22:23:18Z
项目社区:https://github.com/DSchau/jest-preset-typescript

开源协议:

下载


jest-preset-typescript

Build Status NPM Version

A preset that can be used to quickly get up and running with jest + typescript.

Install

  1. yarn add jest ts-jest typescript jest-preset-typescript --dev

or with npm if that’s more your style 😎

  1. npm install jest ts-jest typescript jest-preset-typescript --save-dev

(note: if you already have the peer dependencies installed, you only need to install jest-preset-typescript!)

Then, once all dependencies are installed, simply create a jest.config.js in the root of your project with the following contents:

  1. module.exports = {
  2. preset: 'jest-preset-typescript'
  3. };

Features

All of the features come courtesy of ts-jest, so simply add this preset and you can author your tests/mocks/etc. in TypeScript, all the while getting the excellent testing capabilities of jest. 🎉