generator-create-kata
v1.0.0
Published
Yeoman Generator for creating a Jest test project with TypeScript support.
Downloads
3
Maintainers
Readme
create-kata
generator for yeoman
Introduction
This yeoman generator will create a simple typescript project with support for running tests with jest.
Installation
Install the generator (and if not already present yo
itself) globally by executing:
npm install yo generator-create-kata -g
Usage
- Create a folder for your kata project
- Enter that folder (
cd your-folder
) - Call
yo create-kata
and answer the prompted questions
The most important piece of information you will be asked for, is the kata's name. It will be used to build:
- the project's name in the
package.json
- a spec file for your tests
- a class for your solution code