typescript unit testing
// TYPESCRIPT UNIT TESTING
// MOCHA
var assert = require('assert');
describe('Test Suite 1', function() {
it('test1', function() {
assert.ok(1===1, "This will not fail");
assert.ok(true, "This will not fail");
asset.ok(false, "This will fail");
})
// more tests
})
//CLI
// - INSTALL
`npm install mocha`
// - RUN
`mocha file.spec.ts`