Files
component-detection-depende…/componentDetection.test.ts
T
2023-01-21 21:56:51 +00:00

9 lines
222 B
TypeScript

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