Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
/ aria-tools Public archive

Simple testing tools, zero configuration command line interface

Notifications You must be signed in to change notification settings

aelbore/aria-tools

Repository files navigation

npm version License: MIT

aria-tools

Simple testing tools, zero configuration command line interface

Installation

  • Jasmine

      npm install --save-dev aria-tools @types/jasmine
    
  • Mocha Chai

      npm install --save-dev aria-tools @types/mocha @types/chai
    

Usage

  • By default it will look .spec.ts files in your src folder

    aria test <dir>
    
    • custom extension name of your spec files

      aria test <dir> --extname .test.ts
      
  • Serve your test coverage


    aria serve --test-coverage
    

Demo