Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/di-sukharev/AI-TDD
CLI for TDD — you write the test, GPT writes the code to pass it ✅
https://github.com/di-sukharev/AI-TDD
ai artificial-intelligence chatgpt gpt openai productivity tdd test-driven-development
Last synced: 3 months ago
JSON representation
CLI for TDD — you write the test, GPT writes the code to pass it ✅
- Host: GitHub
- URL: https://github.com/di-sukharev/AI-TDD
- Owner: di-sukharev
- Created: 2023-03-25T13:29:06.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-30T13:34:11.000Z (about 1 year ago)
- Last Synced: 2024-10-26T21:22:52.852Z (3 months ago)
- Topics: ai, artificial-intelligence, chatgpt, gpt, openai, productivity, tdd, test-driven-development
- Language: TypeScript
- Homepage:
- Size: 185 KB
- Stars: 256
- Watchers: 9
- Forks: 17
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
Awesome Lists containing this project
- awesome_ai_for_programmers - Написание кода к тестам - например, написание тестовых сценариев для функции, которая проверяет, является ли число простым. (Кейсы с ChatGPT)
README
GPT powered CLI for TDD
You write the test — GPT writes the code until it passes the test ✅
Prompting GPT with a test suite makes it write code impressively accurate
---
## Setup
AITDD runs on [Bun](https://bun.sh/), make sure you first install the latest Bun version.
1. Install AITDD globally as a CLI:
```sh
curl -sSL https://raw.githubusercontent.com/di-sukharev/AI-TDD/master/install.sh | bash
```2. Get your API key from [OpenAI](https://platform.openai.com/account/api-keys). Make sure you add payment details, so API works.
3. Set the key to AITDD config:
```sh
aitdd config set OPENAI_API_KEY
```Your api key is stored locally in `~/.aitdd/config` config file and is not stored anywhere in any other way.
4. Set the command to run the tests:
```sh
aitdd config set RUN_TESTS "npm run test"
```Your api key is stored locally in `~/.aitdd/config` config file and is not stored anywhere in any other way.
## Example
Here is a frontend test suite written in [Jest](https://jestjs.io/) + [Testing Library](https://testing-library.com/). Yes, AITDD easily passes even frontend tests:
```typescript
import React from "react";
import { rest } from "msw";
import { setupServer } from "msw/node";
import { render, fireEvent, waitFor, screen } from "@testing-library/react";
import "@testing-library/jest-dom";
import Fetch from "../fetch";const server = setupServer(
rest.get("/greeting", (req, res, ctx) => {
return res(ctx.json({ greeting: "hello there" }));
})
);beforeAll(() => server.listen());
afterEach(() => server.resetHandlers());
afterAll(() => server.close());test("loads and displays greeting", async () => {
render();fireEvent.click(screen.getByText("Load Greeting"));
await waitFor(() => screen.getByRole("heading"));
expect(screen.getByRole("heading")).toHaveTextContent("hello there");
expect(screen.getByRole("button")).toBeDisabled();
});test("handles server error", async () => {
server.use(
rest.get("/greeting", (req, res, ctx) => {
return res(ctx.status(500));
})
);render();
fireEvent.click(screen.getByText("Load Greeting"));
await waitFor(() => screen.getByRole("alert"));
expect(screen.getByRole("alert")).toHaveTextContent("Oops, failed to fetch!");
expect(screen.getByRole("button")).not.toBeDisabled();
});
```Ready? Here is the code generated by AITDD (GPT-4) to pass the test:
```jsx
import React, { useState } from "react";function Fetch({ url }) {
const [data, setData] = useState(null);
const [error, setError] = useState(null);
const [loading, setLoading] = useState(false);async function fetchData() {
setLoading(true);
try {
const response = await fetch(url);
if (!response.ok) throw new Error("Failed to fetch");
const data = await response.json();
setData(data.greeting);
} catch (error) {
setError(error.message);
} finally {
setLoading(false);
}
}return (
{data &&{data}
}
{error &&{error}}
Load Greeting
);
}export default Fetch;
```## Usage
You can call aitdd like this:
```sh
aitdd run
```## Payments
You pay for your own requests to OpenAI API. AITDD uses latest GPT model by default, check it's [pricing](https://openai.com/pricing). Maximum response tokens are set to 2000, you can adjust it via `ait config set maxTokens=`.
I couldn't manage ChatGPT model to solve the problem. I tried to few shot it with a response example, it doesn't understand what I want. If you want to try manage it via ChatGPT — test it and open a PR 🚀