* Increments the current clock time by the specified duration. Any effects * that were scheduled to occur on or before the new time will be run in * order.
(durationInput: Duration.DurationInput)
| 227 | * order. |
| 228 | */ |
| 229 | adjust(durationInput: Duration.DurationInput): Effect.Effect<void> { |
| 230 | const duration = Duration.decode(durationInput) |
| 231 | return core.zipRight(this.warningDone(), this.run((n) => n + Duration.toMillis(duration))) |
| 232 | } |
| 233 | /** |
| 234 | * Increments the current clock time by the specified duration. Any effects |
| 235 | * that were scheduled to occur on or before the new time will be run in |
no test coverage detected