(id: string)
| 12 | import * as TestUtils from "./utilities.js" |
| 13 | |
| 14 | const withConstantIdGenerator = (id: string) => |
| 15 | Effect.provideService(IdGenerator.IdGenerator, { |
| 16 | generateId: () => Effect.succeed(id) |
| 17 | }) |
| 18 | |
| 19 | const PersistenceLayer = Layer.provideMerge( |
| 20 | Chat.layerPersisted({ storeId: "chat" }), |