fix(test): add test for environment

This commit is contained in:
Philipp Kunz 2018-07-30 16:06:43 +02:00
parent f2db8dc41f
commit f452964779

View File

@ -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
});