Issue with Layer.mergeAll and Environment Variables in Unit Test
Have I spotted a bug, or doing it wrong? i have a unit test
when providing deps with
Here is the MockConfigLayer
when providing deps with
.pipe(E.provide(FoobarStore.Default), E.provide(MockConfigLayer)) its all good but if i provide them with .pipe(E.provide(Layer.mergeAll(FoobarStore.Default, MockConfigLayer))) it fails because it cant resolve envars. the FoobarStore is a simple Effect Service that need to resolve table name, which fails if usingthe Layer.mergeAll(..).Here is the MockConfigLayer
