From 0f76e83facc509bb773767b79542a6914a9fc795 Mon Sep 17 00:00:00 2001 From: Oliver Akins Date: Sun, 19 Jun 2022 12:41:57 -0600 Subject: [PATCH] Add test make recipe --- common/makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/makefile b/common/makefile index de1d756..abf8d38 100644 --- a/common/makefile +++ b/common/makefile @@ -25,4 +25,7 @@ watch-esm: tsc --module es6 --outDir $(ESM_LOCATION) --watch watch-cjs: - tsc --module commonjs --outDir $(CJS_LOCATION) --watch \ No newline at end of file + tsc --module commonjs --outDir $(CJS_LOCATION) --watch + +test: + node_modules/mocha/bin/_mocha -r ts-node/register src/**/*.spec.ts \ No newline at end of file