Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 1.27 KB

File metadata and controls

29 lines (24 loc) · 1.27 KB

Angular 2 Testing for Hackers

AngularConnect 2016 - Workshop

This repository contains the materials for the workshop.

Prerequisites

  • Get hold of a TypeScript code editor (e.g. Visual Studio Code or WebStorm)
  • Install Node.js (maybe nvm too)
  • Clone the repository
    • git clone https://github.com/angular-workshops/angular2-testing.git
    • cd angular2-testing
  • Install the angular CLI tool globally (needs to be >= beta.15)
    • npm install -g angular-cli
  • Install the karma CLI tool globally
    • npm install -g karma-cli
  • Install the local dependencies for jasmine folder
    • cd jasmine
    • npm install
  • Install the local dependencies for Tour of Heroes folder
    • cd ../tour-of-heroes
    • npm install
  • On the day of the workshop run git pull to update to the latest version of the repo since there may be changes

Workshop Documents