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.
Install dependencies
npm install
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