Files
component-detection-depende…/componentDetection.test.ts
2023-01-22 01:06:08 +00:00

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