forked from mirrored/github-readme-stats
This commit performs the base changes that are needed to migrate the codebase to typescript.
19 lines
461 B
TypeScript
19 lines
461 B
TypeScript
import "@testing-library/jest-dom";
|
|
import { calculateRank } from "../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 });
|
|
});
|
|
});
|