MCPcopy
hub / github.com/iterative/cml / runnerByName

Method runnerByName

src/cml.js:453–459  ·  view source on GitHub ↗
(opts = {})

Source from the content-addressed store, hash-verified

451 }
452
453 async runnerByName(opts = {}) {
454 let { name, runners } = opts;
455
456 if (!runners) runners = await this.runners(opts);
457
458 return runners.find((runner) => runner.name === name);
459 }
460
461 async runnerById(opts = {}) {
462 return await this.getDriver().runnerById(opts);

Callers 4

parseRunnerLogMethod · 0.95
unregisterRunnerMethod · 0.95
testRunnerFunction · 0.95
runFunction · 0.80

Calls 1

runnersMethod · 0.95

Tested by 1

testRunnerFunction · 0.76