gpt3rocket
Version:
Little helper utility for priming + transacting w/ GPT3 api
20 lines (15 loc) • 308 B
text/typescript
import * as test from "tape";
test("setup", function (t) {
t.end();
});
test("<Sanity Test>", async (t: any) => {
const sample = true;
const expected = sample;
const actual = true;
t.deepEqual(actual, expected);
console.log("yay");
});
test("teardown", function (t) {
// ...
t.end();
});