@huggingface/hub
Version:
Utilities to interact with the Hugging Face hub
17 lines (14 loc) • 403 B
text/typescript
import { assert, it, describe } from "vitest";
import { countCommits } from "./count-commits";
describe("countCommits", () => {
it("should fetch paginated commits from the repo", async () => {
const count = await countCommits({
repo: {
name: "openai-community/gpt2",
type: "model",
},
revision: "607a30d783dfa663caf39e06633721c8d4cfcd7e",
});
assert.equal(count, 26);
});
});