This repository has been archived on 2023-05-29. You can view files and clone it, but cannot push or open issues or pull requests.
fp-ts-training/README.md

26 lines
616 B
Markdown
Raw Normal View History

2020-07-06 16:49:45 +03:00
# Inato `fp-ts` training
This repo is a work in progress toward having a comprehensive training material
to onboard people on using `fp-ts` efficiently.
The exercices consist of unimplemented functions and their associated failing
tests.
To run the tests, simply run
```sh
$ yarn test
```
You can also run them in watch mode:
```sh
$ yarn test:watch
```
Finally, if you wish to only run the tests for a given exercice `exoN`, you can
run the following:
```sh
$ yarn test[:watch] exoN
```
2020-07-06 16:49:45 +03:00
The exercices are organized into `exoN` folders and most of what is required to
complete each is detailed in the comments.