From f452964779f1298797f11b2faf0eeaa80e6d3df7 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 30 Jul 2018 16:06:43 +0200 Subject: [PATCH] fix(test): add test for environment --- test/test.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test.ts b/test/test.ts index fe22fce..1f562d5 100644 --- a/test/test.ts +++ b/test/test.ts @@ -44,6 +44,10 @@ tap.test('smartshell should run async', async () => { }); }); +tap.test('should be able to find git', async () => { + testSmartshell.exec('git --version'); +}) + tap.start({ throwOnError: true });