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

9 lines
222 B
TypeScript

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