Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 429 Bytes

File metadata and controls

30 lines (22 loc) · 429 Bytes

Abstract

I create a very simple project to execute TypeScript with tests.

Prerequisite:

  • nodejs
  • typescript (npm install typescript -g)
  • jasmine (npm install jasmine -g)

For check prerequisite:

You should have the version installed.

tsc -v
jasmine -v

Install dependencies:

npm install 

Compile and execute tests :

 tsc ; jasmine

Result :

Good execution