Stub component detection download and execution

This commit is contained in:
Justin Hutchings
2023-01-21 21:56:51 +00:00
parent 2e4172a352
commit e2c79b684b
9 changed files with 2956 additions and 3047 deletions
+9
View File
@@ -0,0 +1,9 @@
import {downloadLatestRelease, runComponentDetection} from './componentDetection';
test('Downloads CLI', async () => {
downloadLatestRelease();
});
test('Runs CLI', async () => {
runComponentDetection('./test');
});