Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 608 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 608 Bytes

TypeScript Katas Starter

This is a basic starter repository for doing katas in TypeScript, with tests using Jest.

  • Write your kata solutions in the app directory.
  • Write test files in the tests directory.

Suggested Katas

Made Tech Katas

Getting started

Install dependencies

npm install

Running tests

To run all tests

npm run test

To run all tests in watch mode

npm run test:watch

To run one test

npm run test <testname>

E.g.

npm run test subtract