(global: Partial<Global.Interface>, flags: Partial<RuntimeFlags.Info> = {})
| 33 | const configLayer = Layer.succeed(Config.Service, TestConfig.make()) |
| 34 | |
| 35 | const instructionLayer = (global: Partial<Global.Interface>, flags: Partial<RuntimeFlags.Info> = {}) => |
| 36 | AppNodeBuilder.build(Instruction.node, [ |
| 37 | [Config.node, configLayer], |
| 38 | [Global.node, Global.layerWith(global)], |
| 39 | [RuntimeFlags.node, RuntimeFlags.layer(flags)], |
| 40 | ]) |
| 41 | |
| 42 | const provideInstruction = |
| 43 | (global: Partial<Global.Interface>, flags?: Partial<RuntimeFlags.Info>) => |
no test coverage detected