13 lines
321 B
TypeScript
13 lines
321 B
TypeScript
import {downloadLatestRelease, getManifestsFromResults, runComponentDetection} from './componentDetection';
|
|
|
|
test('Downloads CLI', async () => {
|
|
downloadLatestRelease();
|
|
});
|
|
|
|
test('Runs CLI', async () => {
|
|
runComponentDetection('./test');
|
|
});
|
|
|
|
test('Parses CLI output', async () => {
|
|
getManifestsFromResults();
|
|
}); |