mirror of
https://github.com/anuraghazra/github-readme-stats.git
synced 2024-12-15 06:04:17 +08:00
19 lines
464 B
JavaScript
19 lines
464 B
JavaScript
import "@testing-library/jest-dom";
|
|
import { calculateRank } from "../src/calculateRank.js";
|
|
|
|
describe("Test calculateRank", () => {
|
|
it("should calculate rank correctly", () => {
|
|
expect(
|
|
calculateRank({
|
|
totalCommits: 100,
|
|
totalRepos: 5,
|
|
followers: 100,
|
|
contributions: 61,
|
|
stargazers: 400,
|
|
prs: 300,
|
|
issues: 200,
|
|
}),
|
|
).toStrictEqual({ level: "A+", score: 49.16605417270399 });
|
|
});
|
|
});
|