Files
component-detection-depende…/componentDetection.test.ts
T

13 lines
321 B
TypeScript
Raw Normal View History

2023-01-22 01:06:08 +00:00
import {downloadLatestRelease, getManifestsFromResults, runComponentDetection} from './componentDetection';
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();
});