mirror of
https://github.com/anuraghazra/github-readme-stats.git
synced 2024-11-21 01:16:23 +08:00
f8e32f9e0c
* ci: add e2e vercel test action This commit adds several end-to-end tests that can be used to test whether the Vercel Preview deployment successfully returns the cards. * test: add additional e2e card tests * test: improve e2e card tests This commit makes sure that the tests also check whether a valid cards are returned from the preview deployment.
13 lines
367 B
JavaScript
13 lines
367 B
JavaScript
export default {
|
|
clearMocks: true,
|
|
transform: {},
|
|
testEnvironment: "jsdom",
|
|
coverageProvider: "v8",
|
|
testPathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/tests/e2e/"],
|
|
modulePathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/tests/e2e/"],
|
|
coveragePathIgnorePatterns: [
|
|
"<rootDir>/node_modules/",
|
|
"<rootDir>/tests/E2E/",
|
|
],
|
|
};
|