How to test an HttpApiBuilder?

Hi, how can tests be added to this code?
export const AuthenticationImplementation = HttpApiBuilder.group(
  Api,
  "authentication",
  Effect.fnUntraced(function* (handlers) {
    yield* Console.log("Building authentication implementation")
    return handlers
      .handle("login", ({ payload }) => ...)
      .handle("register", ({ payload }) => ...)
  })
)
Was this page helpful?