(...args: ReadonlyArray<any>)
| 309 | * import { Console, Effect } from "effect" |
| 310 | * |
| 311 | * const inspected: Array<unknown> = [] |
| 312 | * const testConsole: Console.Console = Object.assign(Object.create(console), { |
| 313 | * dir: (item: unknown, options?: unknown) => inspected.push([item, options]) |
| 314 | * }) |
| 315 | * const program = Effect.gen(function*() { |
| 316 | * const obj = { name: "John", age: 30, nested: { city: "New York" } } |
| 317 | * yield* Console.dir(obj) |
| 318 | * yield* Console.dir(obj, { depth: 2 }) |
| 319 | * }) |
no test coverage detected
searching dependent graphs…