Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 892 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 892 Bytes

ts-interview

Simple project to use for technical interviews in TypeScript. Just clone the repo, open in your IDE of choice, and use Jest to execute.

Requirements

Node/npm are required. See .nvmrc for recommended node version. It is recommended to use Node Version Manager with shell integration if possible.

Usage

  1. Clone this repo locally
  2. Run npm ci to install dependencies
  3. Edit src/interview.ts in your IDE of choice, or create a new file under src
  4. Edit src/interview.test.ts to implement unit tests
  5. In a terminal run npm test which will automatically re-run unit tests as your source files change
  6. In a terminal run npm run test:coverage which will run all unit tests and calculate/report test coverage