/** * Runs the generator and collects all of its values in a chunk. * * @tsplus getter effect/core/testing/Gen runCollect */ export function runCollect(self: Gen): Effect> { return self.sample.collectSome.map((sample) => sample.value).runCollect }