Skip to content

Commit

Permalink
Apply patches
Browse files Browse the repository at this point in the history
  • Loading branch information
developStorm authored and rickstaa committed Mar 22, 2022
1 parent 81ff6d6 commit 0e0b5df
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion api/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ module.exports = async (req, res) => {
try {
const stats = await fetchStats(
username,
parseArray(role),
parseBoolean(count_private),
parseBoolean(include_all_commits),
parseArray(role),
);

const cacheSeconds = clampValue(
Expand Down
3 changes: 1 addition & 2 deletions api/top-langs.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,8 @@ module.exports = async (req, res) => {
try {
const topLangs = await fetchTopLanguages(
username,
parseArray(exclude_repo),
parseArray(role),
parseArray(hide),
parseArray(exclude_repo),
);

const cacheSeconds = clampValue(
Expand Down
2 changes: 1 addition & 1 deletion src/fetchers/stats-fetcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ const totalCommitsFetcher = async (username) => {
*/
async function fetchStats(
username,
ownerAffiliations,
count_private = false,
include_all_commits = false,
ownerAffiliations,
) {
if (!username) throw new MissingParamError(["username"]);

Expand Down
8 changes: 4 additions & 4 deletions tests/fetchStats.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe("Test fetchStats", () => {
it("should fetch correct stats", async () => {
mock.onPost("https://api.github.com/graphql").reply(200, data);

let stats = await fetchStats("anuraghazra");
let stats = await fetchStats("anuraghazra", []);
const rank = calculateRank({
totalCommits: 100,
totalRepos: 5,
Expand All @@ -77,15 +77,15 @@ describe("Test fetchStats", () => {
it("should throw error", async () => {
mock.onPost("https://api.github.com/graphql").reply(200, error);

await expect(fetchStats("anuraghazra")).rejects.toThrow(
await expect(fetchStats("anuraghazra", [])).rejects.toThrow(
"Could not resolve to a User with the login of 'noname'.",
);
});

it("should fetch and add private contributions", async () => {
mock.onPost("https://api.github.com/graphql").reply(200, data);

let stats = await fetchStats("anuraghazra", true);
let stats = await fetchStats("anuraghazra", [], true);
const rank = calculateRank({
totalCommits: 150,
totalRepos: 5,
Expand Down Expand Up @@ -113,7 +113,7 @@ describe("Test fetchStats", () => {
.onGet("https://api.github.com/search/commits?q=author:anuraghazra")
.reply(200, { total_count: 1000 });

let stats = await fetchStats("anuraghazra", true, true);
let stats = await fetchStats("anuraghazra", [], true, true);
const rank = calculateRank({
totalCommits: 1050,
totalRepos: 5,
Expand Down
4 changes: 2 additions & 2 deletions tests/fetchTopLanguages.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe("FetchTopLanguages", () => {
it("should fetch correct language data", async () => {
mock.onPost("https://api.github.com/graphql").reply(200, data_langs);

let repo = await fetchTopLanguages("anuraghazra");
let repo = await fetchTopLanguages("anuraghazra", []);
expect(repo).toStrictEqual({
HTML: {
color: "#0f0",
Expand Down Expand Up @@ -99,7 +99,7 @@ describe("FetchTopLanguages", () => {
it("should throw error", async () => {
mock.onPost("https://api.github.com/graphql").reply(200, error);

await expect(fetchTopLanguages("anuraghazra")).rejects.toThrow(
await expect(fetchTopLanguages("anuraghazra", [])).rejects.toThrow(
"Could not resolve to a User with the login of 'noname'.",
);
});
Expand Down

0 comments on commit 0e0b5df

Please sign in to comment.