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

9 lines
222 B
TypeScript
Raw Normal View History

import {downloadLatestRelease, runComponentDetection} from './componentDetection';
test('Downloads CLI', async () => {
downloadLatestRelease();
});
test('Runs CLI', async () => {
runComponentDetection('./test');
});