MCPcopy Index your code
hub / github.com/microsoft/vscode-cpptools / getTestInfo

Function getTestInfo

Extension/test/common/selectTests.ts:64–74  ·  view source on GitHub ↗
(...scenarioOptions: (string | undefined)[])

Source from the content-addressed store, hash-verified

62}
63
64export async function getTestInfo(...scenarioOptions: (string | undefined)[]) {
65 for (const each of scenarioOptions) {
66 if (each) {
67 const result = await getScenarioInfo(each);
68 if (result) {
69 return result;
70 }
71 }
72 }
73 return undefined;
74}
75
76export function run (testsRoot: string, cb: (error: any, failures?: number) => void): void {
77/**

Callers 1

runFunction · 0.85

Calls 1

getScenarioInfoFunction · 0.85

Tested by

no test coverage detected