Skip to content

Commit

Permalink
tests(e2e): update data to fix retrieve stats card test (#3643)
Browse files Browse the repository at this point in the history
* tests(e2e): update data to fix retrieve stats card test

* dev
  • Loading branch information
qwerty541 committed Feb 6, 2024
1 parent 1be7d06 commit 5f411be
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions tests/e2e/e2e.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,20 @@ import { expect, describe, beforeAll, test } from "@jest/globals";

const REPO = "curly-fiesta";
const USER = "catelinemnemosyne";
const STATS_CARD_USER = "e2eninja";
const GIST_ID = "372cef55fd897b31909fdeb3a7262758";

const STATS_DATA = {
name: "Cateline Mnemosyne",
totalPRs: 2,
name: "E2ENinja",
totalPRs: 1,
totalReviews: 0,
totalCommits: 16,
totalCommits: 3,
totalIssues: 1,
totalStars: 1,
contributedTo: 1,
contributedTo: 0,
rank: {
level: "C",
percentile: 98.25108541551654,
percentile: 98.73972605284538,
},
};

Expand Down Expand Up @@ -116,7 +117,7 @@ describe("Fetch Cards", () => {

// Check if the Vercel preview instance stats card function is up and running.
await expect(
axios.get(`${VERCEL_PREVIEW_URL}/api?username=${USER}`),
axios.get(`${VERCEL_PREVIEW_URL}/api?username=${STATS_CARD_USER}`),
).resolves.not.toThrow();

// Get local stats card.
Expand All @@ -126,7 +127,7 @@ describe("Fetch Cards", () => {

// Get the Vercel preview stats card response.
const serverStatsSvg = await axios.get(
`${VERCEL_PREVIEW_URL}/api?username=${USER}&include_all_commits=true&${CACHE_BURST_STRING}`,
`${VERCEL_PREVIEW_URL}/api?username=${STATS_CARD_USER}&include_all_commits=true&${CACHE_BURST_STRING}`,
);

// Check if stats card from deployment matches the stats card from local.
Expand Down

0 comments on commit 5f411be

Please sign in to comment.