tests(e2e): update data to fix retrieve stats card test (#3643)

* tests(e2e): update data to fix retrieve stats card test

* dev
This commit is contained in:
Alexandr Garbuzov 2024-02-06 13:14:45 +02:00 committed by GitHub
parent 1be7d06fd3
commit 5f411be854
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,
},
};
@ -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.
@ -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.