Test Generator

AI

Gere esqueleto de testes localmente ou peça sugestões com IA.

Código, contrato ou payload
Teste sugerido
import { describe, expect, it } from "vitest";

describe("generated tests", () => {
  it("handles the main happy path", () => {
    // Arrange
    const input = "function sum(a, b) { return a + b }";

    // Act
    const result = input;

    // Assert
    expect(result).toBeDefined();
  });
});