MCPcopy Create free account
hub / github.com/BuilderIO/framework-benchmarks / getFrameworks

Function getFrameworks

src/helpers/get-frameworks.ts:12–20  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

10 * Get the list of frameworks to test
11 */
12export async function getFrameworks() {
13 if (FRAMEWORKS) {
14 return FRAMEWORKS;
15 }
16 const frameworks = await fs.readdir('./frameworks');
17 return frameworks
18 .filter((item) => !IGNORE_FRAMEWORKS.includes(item))
19 .reverse();
20}

Callers 10

installAllFunction · 0.85
measure.tsFile · 0.85
serve.tsFile · 0.85
kill.tsFile · 0.85
measure-flow.tsFile · 0.85
measure-ssr.tsFile · 0.85
dev.tsFile · 0.85
build.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected