Skip to content

didaquis/js-kata-boilerplate-with-jasmine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JavaScript Kata Boilerplate (using Jasmine.js)

This is a boilerplate ready for doing katas in JavaScript.

Jasmine.js is the library used for testing. Documentation is available here.

How to use:

This boilerplate requires Node.js 14 or higher installed on your computer.

Clone or download this repository and then install the dependencies: npm install.

Useful commands:

  • Run the code: npm run start.
  • Run the test: npm run test.
  • Run the test with 'watch' option: npm run test:watch.
  • Run a basic linter: npm run lint.