Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Latest commit

 

History

History
68 lines (46 loc) · 1.9 KB

README.md

File metadata and controls

68 lines (46 loc) · 1.9 KB

JavaScript Starter

JavaScript Language NodeJS Platform Jest Testing Framework Yarn Package Manager

A kata starter project (skeleton) to practice test-driven development.

Prerequisites

This starter project uses JavaScript, Node.js and yarn as a package manager.

If you do not have Node.js and/or yarn installed locally, please follow these instructions:

Installation

To use this starter project:

  • Click on the Use this template button
  • Fill out the details of your new project
  • Then click on Create repository from template

Create repository from template

Development

Once your new repository created, clone it locally, and install its dependencies:

  • replace ${your-username} with your GitHub username
  • replace ${repository-name} with the repository name you created above
git clone [email protected]:${your-username}/${repository-name}.git
cd ${repository-name}
yarn install

For example, in my case the above commands would look like this:

git clone [email protected]:SolangeUG/fizz-buzz-kata.git
cd fizz-buzz-kata
yarn install

Next steps

Once the setup completed:

  • update the description of your repository to match that of the kata
  • execute the following command to run tests
yarn test

Enjoy working on your kata! 😄