Searched refs:buildAsync (Results 1 – 8 of 8) sorted by relevance
6 import { buildAsync } from '../XcodeBuild';51 buildAsync: jest.fn(async () => '...'),88 expect(buildAsync).toBeCalledWith({124 expect(buildAsync).toBeCalledWith({
14 buildAsync: (flavor?: ClientBuildFlavor) => Promise<void>; property
34 async buildAsync(flavor: ClientBuildFlavor = ClientBuildFlavor.VERSIONED) { method in AndroidClientBuilder
32 async buildAsync(flavor: ClientBuildFlavor = ClientBuildFlavor.VERSIONED) { method in IosClientBuilder
33 const buildOutput = await XcodeBuild.buildAsync(props);
270 export async function buildAsync(props: BuildProps): Promise<string> { function
83 const buildAsync = async (bundle: BundleOptions): Promise<BundleOutput> => { constant164 const intermediateOutputs = await Promise.all(bundles.map((bundle) => buildAsync(bundle)));
136 await builder.buildAsync(flavor);