import tapDiff from "tap-diff"; import { TestSet, TestRunner } from "alsatian"; (async () => { const testSet = TestSet.create(); testSet.addTestsFromFiles("./**/*.test.ts"); const testRunner = new TestRunner(); testRunner.outputStream .pipe(tapDiff()) .pipe(process.stdout); await testRunner.run(testSet); })().catch((e) => { console.error(e); process.exit(1); });