Update tests

This commit is contained in:
Justin Hutchings
2023-01-22 20:19:41 +00:00
parent 12357ddc15
commit e07757ee54
4 changed files with 19 additions and 15 deletions
+5 -5
View File
@@ -1,12 +1,12 @@
import { Manifest } from '@github/dependency-submission-toolkit';
export default class ComponentDetection {
protected static componentDetectionPath: string;
protected static outputPath: string;
static componentDetectionPath: string;
static outputPath: string;
static scanAndGetManifests(path: string): Promise<Manifest[] | undefined>;
private static downloadLatestRelease;
private static runComponentDetection;
static downloadLatestRelease(): Promise<void>;
static runComponentDetection(path: string): Promise<void>;
private static getComponentDetectionParameters;
private static getManifestsFromResults;
static getManifestsFromResults(): Promise<Manifest[] | undefined>;
private static getDependencyScope;
private static makePackageUrl;
private static getLatestReleaseURL;