attio-js
Version:
Developer-friendly & type-safe JS/TS SDK based on the official OpenAPI spec of Attio.
14 lines (11 loc) • 334 B
text/typescript
import { test, expect } from "vitest";
import { Attio } from "../src/index.js";
test("List notes for all records.", async () => {
const attio = new Attio();
const result = await attio.notes.list({
limit: 10,
offset: 5
});
expect(result).toBeDefined();
expect(result.data).toBeDefined();
})