/typescript-tests

Primary LanguageTypeScriptMIT LicenseMIT

Typescript unit tests (Jasmine | Mocha | Jest) with coverage

This repository contains 3 Projects:

  1. jasmine

  2. mocha

  3. jest

Each project contains sample source code in src folder and unit tests in tests folder.

The goal is to create starter project using typescript and above testing frameworks along with debugging in VS Code and getting code coverage


Install

Jasmine Test

1 - cd jasmine

2 - npm i

Jest Test

1 - cd jest

2 - npm i

Mocha Test

1 - cd mocha

2 - npm i

Run

Test

npm t --prefix jasmine

npm t --prefix mocha

npm t --prefix jest

Test Coverage Console

npm run test:c --prefix jasmine

npm run test:c --prefix mocha

npm run test:c --prefix jest

Test Coverage Browser

npm start --prefix jasmine

npm start --prefix mocha

npm start --prefix jest