Watch-Dog-Env / node_modules /@huggingface /hub /src /lib /count-commits.spec.ts
Mooizz's picture
Upload folder using huggingface_hub
66980c0 verified
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);
});
});