9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
|
|
import {downloadLatestRelease, runComponentDetection} from './componentDetection';
|
||
|
|
|
||
|
|
test('Downloads CLI', async () => {
|
||
|
|
downloadLatestRelease();
|
||
|
|
});
|
||
|
|
|
||
|
|
test('Runs CLI', async () => {
|
||
|
|
runComponentDetection('./test');
|
||
|
|
});
|