Files
component-detection-depende…/componentDetection.test.ts
Justin Hutchings e07757ee54 Update tests
2023-01-22 20:19:41 +00:00

17 lines
527 B
TypeScript

import ComponentDetection from './componentDetection';
import fs from 'fs';
test('Downloads CLI', async () => {
ComponentDetection.downloadLatestRelease();
expect(fs.existsSync(ComponentDetection.componentDetectionPath));
});
test('Runs CLI', async () => {
ComponentDetection.runComponentDetection('./test');
expect(fs.existsSync(ComponentDetection.outputPath));
});
test('Parses CLI output', async () => {
var manifests = await ComponentDetection.getManifestsFromResults();
expect(manifests?.length == 2);
});