UserSyncFrontend / node_modules /@huggingface /hub /src /lib /count-commits.spec.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 5)
19e88d2 verified
Raw
History Blame Contribute Delete
403 Bytes
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);
});
});