This is an implementation of Conway's Game of Life in TypeScript created as an exercise in test-driven TypeScript development. Created by @basicallydan.
Check out the game of life in your terminal by running npm start
.
Jest tests are in src
, so you just need to run npm test
to run them.
If you'd like to contribute, that's great and I encourage it - I do, however, also encourage reading the contributing doc first. The golden rule for contributing is that you ensure that the tests are still passing before you make a pull request.
- Using
yarn
to installts-jest
seems to cause problems when compiling native parts of the module. Usenpm install -D ts-jest
instead.