mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
32 lines
318 B
Markdown
32 lines
318 B
Markdown
# Gilded Rose
|
|
|
|
This is the Gilded Rose kata in JavaScript with Jest
|
|
|
|
## Getting started
|
|
|
|
Install dependencies
|
|
|
|
```sh
|
|
npm install
|
|
```
|
|
|
|
## 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
|
|
```
|