mirror of
https://github.com/anuraghazra/github-readme-stats.git
synced 2024-12-15 06:04:17 +08:00
19 lines
463 B
JavaScript
19 lines
463 B
JavaScript
require("@testing-library/jest-dom");
|
|
const calculateRank = require("../src/calculateRank");
|
|
|
|
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 });
|
|
});
|
|
});
|