/** * Accesses an `Annotations` instance in the environment and appends the * specified annotation to the annotation map. * * @tsplus static effect/core/testing/Annotations.Ops annotate */ export function annotate(key: TestAnnotation, value: V): Effect { return Effect.serviceWithEffect( Annotations.Tag, (annotations) => annotations.annotate(key, value) ) }