GildedRose-Refactoring-Kata/README.md
2022-08-19 16:16:19 +12:00

40 lines
431 B
Markdown

# Gilded Rose
This is the Gilded Rose kata in JavaScript with Jest.
See `docs/GildedRoseRequirements-Simple.txt` for the business requirements.
## Getting started
Install dependencies
```sh
npm install
```
Run the demo
```sh
npm start
```
## Running tests
To run all tests
```sh
npm test
```
To run all tests in watch mode
```sh
npm run test:watch
```
To generate test coverage report
```sh
npm run test:coverage
```