Documentation
    Preparing search index...
    • Helper function to adapt the drivers to the Node.js runtime for tests.

      This is helpful for drivers that run in-process as opposed to drivers that rely on external tools.

      Parameters

      • registryPath: string
      • driverFactory: (
            registry: Registry<any>,
        ) => Promise<
            {
                cleanup?: () => Promise<void>;
                driver: {
                    actor: ActorDriverBuilder;
                    manager: ManagerDriverBuilder;
                    name: string;
                };
                rivetEngine?: {
                    endpoint: string;
                    namespace: string;
                    runnerName: string;
                    token: string;
                };
            },
        >

      Returns Promise<DriverDeployOutput>