mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-19 08:21:37 +00:00
34 lines
315 B
Markdown
34 lines
315 B
Markdown
# Gilded Rose
|
|
|
|
This is the Gilded Rose kata in TypeScript.
|
|
|
|
## Getting started
|
|
|
|
Install dependencies
|
|
|
|
```sh
|
|
npm install
|
|
```
|
|
|
|
## Running tests
|
|
|
|
To run all tests
|
|
|
|
### Jest way
|
|
|
|
```sh
|
|
npm run test:jest
|
|
```
|
|
|
|
To run all tests in watch mode
|
|
|
|
```sh
|
|
npm run test:jest:watch
|
|
```
|
|
|
|
### Mocha way
|
|
|
|
```sh
|
|
npm run test:mocha
|
|
```
|