Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 433 Bytes

File metadata and controls

18 lines (15 loc) · 433 Bytes

Example Typescript/Gulp/Mocha workflow

Assumption: node and npm is installed

#if you dont have typescript or gulp
npm install -g gulp typescript typings
#package restore
npm install
#install typescript library definitions
typings install

To run tests:

gulp

NOTE: For an integrated experience, try using VS Code - this solution makes use of a tasks.json file to integrate gulp with its task runner.