Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 645 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 645 Bytes

Get started with TDD in Jasmine

First you need to clone this repo to you local machine

$ git clone git@github.com:abruzzi/tdd-boilerplate.git

And then go to the folder git created for you:

$ cd tdd-boilerplate

Add your specification to spec folder and source code to src folder. Finally, don't forget to update the references in SpecRunner.html.

There are 2 placeholders in the file:

  <!-- include source files here... -->

  <!-- include spec files here... -->

One thing should keep in your mind is source code should be placed BEFORE the specification testing against it.

Have fun!