Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 779 Bytes

README.md

File metadata and controls

40 lines (26 loc) · 779 Bytes

JavaScript Episode 1

Instructions

Tools

  • Install node:

    $ brew install node
  • Install yarn:

    $ brew install yarn --without-node

The Files

Fork this repository and clone your fork (make sure you clone it into your development directory):

$ git clone https://github.com/<your_username>/JSEpisode1.git

Running The Tests

Install all the requirements:

  1. Navigate to the project root (you'll find a file called package.json there).
  2. Install the requirments using yarn install.

Run the tests:

$ yarn test

This command will run the testing file and test your code to make sure it has all the required features.

You'll know when you're done when your code passes all the tests.