Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 801 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 801 Bytes

Kata Playground JS

A simple playground to create and test your Katas in Javascript.

A code kata is an exercise in programming which helps programmers hone their skills through practice and repetition

You can find some katas on sites like Codewars.

How to use

Install the deps

yarn

Write your code and tests

All katas are created under src/<kata-name> folder, there you'll find the following structure:

└── your-kata-exercise
    ├── README.md # Add the kata description here
    ├── index.js # Your code
    └── index.spec.js # Your tests

Test your kata

# run all tests
yarn test

# run only your kata
yarn test cool-exercise

# run and watch your kata
yarn test:tdd cool-exercise