All Projects → azz → Jest Runner Tsc

azz / Jest Runner Tsc

Licence: mit
🃏A Jest runner for the TypeScript compiler

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Labels

Projects that are alternatives of or similar to Jest Runner Tsc

Mobile
📲 Kiwi.com mobile app written in React Native
Stars: ✭ 139 (-12.03%)
Mutual labels:  jest
Generator Jhipster Ionic
Ionic for JHipster 💥
Stars: ✭ 147 (-6.96%)
Mutual labels:  jest
Express Typescript Boilerplate
A delightful way to building a RESTful API with NodeJs & TypeScript by @w3tecch
Stars: ✭ 2,293 (+1351.27%)
Mutual labels:  jest
Jest Express
Mock Express for testing with Jest
Stars: ✭ 141 (-10.76%)
Mutual labels:  jest
Nest User Auth
A starter build for a back end which implements managing users with MongoDB, Mongoose, NestJS, Passport-JWT, and GraphQL.
Stars: ✭ 145 (-8.23%)
Mutual labels:  jest
Lighthouse Badges
🚦Generate badges (shields.io) based on Lighthouse performance.
Stars: ✭ 150 (-5.06%)
Mutual labels:  jest
Spring Boot Vuejs
Example project showing how to build a Spring Boot App providing a GUI with Vue.js
Stars: ✭ 1,818 (+1050.63%)
Mutual labels:  jest
Express Webpack React Redux Typescript Boilerplate
🎉 A full-stack boilerplate that using express with webpack, react and typescirpt!
Stars: ✭ 156 (-1.27%)
Mutual labels:  jest
Js Stack Boilerplate
Final boilerplate code of the JavaScript Stack from Scratch tutorial –
Stars: ✭ 145 (-8.23%)
Mutual labels:  jest
React Native Testing Library
🦉 Simple and complete React Native testing utilities that encourage good testing practices.
Stars: ✭ 2,191 (+1286.71%)
Mutual labels:  jest
Javali
🐗 Create a modern JavaScript library that uses ES6 + Jest
Stars: ✭ 144 (-8.86%)
Mutual labels:  jest
Iceberg
Front-End Boilerplate built with React + Babel + Webpack + SASS
Stars: ✭ 144 (-8.86%)
Mutual labels:  jest
Earl
☕ Ergonomic, modern and type-safe assertion library for TypeScript
Stars: ✭ 153 (-3.16%)
Mutual labels:  jest
Real Estate App Ui
Real Estate Property Listing App Built With React Native
Stars: ✭ 139 (-12.03%)
Mutual labels:  jest
J
微信网页版API 微信桌面机器人
Stars: ✭ 155 (-1.9%)
Mutual labels:  jest
Moleculerjs Boilerplate
A well-structured Moleculer JS Boilerplate with Typescript, CLI, Service Helpers, Swagger, Jest support and everything you'll ever need to deploy rock solid projects. https://pankod.github.io/moleculerjs-boilerplate/
Stars: ✭ 137 (-13.29%)
Mutual labels:  jest
Redux Saga Testing
A no-brainer way of testing your Sagas
Stars: ✭ 150 (-5.06%)
Mutual labels:  jest
Mongoose Typescript Example
Stars: ✭ 156 (-1.27%)
Mutual labels:  jest
Reactconfbr
Public infos and issues about React Conf Brasil organization
Stars: ✭ 156 (-1.27%)
Mutual labels:  jest
Jest Stare
Jest HTML Reporter and Results Processor
Stars: ✭ 154 (-2.53%)
Mutual labels:  jest

jest-runner-tsc

Travis Prettier npm semantic-release License

A Jest runner for the TypeScript compiler

install

npm install --save-dev jest-runner-tsc

usage

Jest configuration:

jest.tsc.config.js:

module.exports = {
  runner: 'jest-runner-tsc',
  displayName: 'tsc',
  moduleFileExtensions: ['js','ts', 'tsx'],
  testMatch: ['<rootDir>/**/*.ts'],
};

options

This project uses cosmiconfig, so you can provide config via:

  • a jest-runner-tsc property in your package.json
  • a jest-runner-tsc.config.js JS file
  • a .jest-runner-tscrc JSON file

Example in package.json

{
  "jest-runner-tsc": {
    "tsconfigPath": "./tsconfig.types.json"
  }
}

tsconfigPath

Default: ./tsconfig.json

A relative path to your tsconfig.json file.

run

jest -c jest.tsc.config.js
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].