2023-01-22 01:06:08 +00:00
|
|
|
import {downloadLatestRelease, getManifestsFromResults, runComponentDetection} from './componentDetection';
|
2023-01-21 21:56:51 +00:00
|
|
|
|
|
|
|
|
test('Downloads CLI', async () => {
|
|
|
|
|
downloadLatestRelease();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('Runs CLI', async () => {
|
|
|
|
|
runComponentDetection('./test');
|
2023-01-22 01:06:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('Parses CLI output', async () => {
|
|
|
|
|
getManifestsFromResults();
|
2023-01-21 21:56:51 +00:00
|
|
|
});
|