Skip to content

Commit

Permalink
fix: commit stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoenig134 committed Dec 2, 2024
1 parent cd9006c commit 5373622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app-runtime/test/lib/TestUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class TestUtil {
public static async createRuntime(configOverride?: any, uiBridge: IUIBridge = new FakeUIBridge(), eventBus?: EventBus): Promise<AppRuntime> {
const config = this.createAppConfig(configOverride);

const nativeBootstrapper = new FakeNativeBootstrapper();
const nativeBootstrapper = new FakeNativeBootstrapper(eventBus);
await nativeBootstrapper.init();
const runtime = await AppRuntime.create(nativeBootstrapper, config, eventBus);
runtime.registerUIBridge(uiBridge);
Expand Down

0 comments on commit 5373622

Please sign in to comment.