buildTestBundle(config: Config): Promise<void>
Pre-builds the esbuild bundle for all test files and caches the result in the group's build state.
import type { Config } from '../../types.ts'; // Defined, not invoked: runs esbuild over every file in config.fsTree. async function prebuild(config: Config) { await buildTestBundle(config); // build.allTestCode set; throws on a build error }
config: Config