fix(#287): number of forks now available

This commit is contained in:
rjoydip
2020-08-02 15:41:16 +05:30
parent f0b89d0f72
commit 0e830c0cc3
6 changed files with 31 additions and 6 deletions
+4
View File
@@ -16,6 +16,7 @@ const data = {
pullRequests: { totalCount: 300 },
issues: { totalCount: 200 },
followers: { totalCount: 100 },
forkRepositories: { totalCount: 3 },
repositories: {
totalCount: 5,
nodes: [
@@ -70,6 +71,7 @@ describe("Test fetchStats", () => {
totalPRs: 300,
totalStars: 400,
rank,
totalForkRepositories: 3
});
});
@@ -103,6 +105,7 @@ describe("Test fetchStats", () => {
totalPRs: 300,
totalStars: 400,
rank,
totalForkRepositories: 3
});
});
@@ -131,6 +134,7 @@ describe("Test fetchStats", () => {
totalPRs: 300,
totalStars: 400,
rank,
totalForkRepositories: 3
});
});
});