© 2026 Hedgehog Software, LLC
describe("Effect", () => { test("should run a program", () => { console.log("foo"); }); });
Effect
import { Effect } from 'effect'; describe("Effect", () => { test("should run a program", () => { Effect.succeed(1); }); });
ReferenceError: TextEncoder is not defined