Effect CommunityEC
Effect Community3y ago
11 replies
pigoz

Vitest integration?

anyone ever tried to make a Vitest testing API that automatically wraps a test inside Effect.gen? i.e.:

describe.only("test", () => {
  it.gen("generator", function* ($) {
    yield * $(Effect.succeed(1));
  });
});
Was this page helpful?