Alsatian is a unit testing framework written in TypeScript. It allows for usage of Test Cases, and outputs TAP-compliant markup.
To use it, install it from npm:
npm install alsatian --save-dev
Then set up a test file:
import { Expect, Test, TestCase } from "alsatian";
import { SomeM...