adapt paths, try fix dependencies
This commit is contained in:
+2
-2
@@ -1,3 +1,3 @@
|
||||
npm test
|
||||
npm run lint
|
||||
npm --prefix .vercel/output/functions/api.func/core-app/ test
|
||||
npm --prefix .vercel/output/functions/api.func/core-app/ run lint
|
||||
npx lint-staged
|
||||
|
||||
@@ -3,19 +3,11 @@ export default {
|
||||
transform: {},
|
||||
testEnvironment: "jsdom",
|
||||
coverageProvider: "v8",
|
||||
setupFiles: [
|
||||
"<rootDir>/.vercel/output/functions/api.func/core-app/tests/setup.jest.js",
|
||||
],
|
||||
testPathIgnorePatterns: [
|
||||
"<rootDir>/.vercel/output/functions/api.func/core-app/node_modules/",
|
||||
"<rootDir>/.vercel/output/functions/api.func/core-app/tests/e2e/",
|
||||
],
|
||||
modulePathIgnorePatterns: [
|
||||
"<rootDir>/.vercel/output/functions/api.func/core-app/node_modules/",
|
||||
"<rootDir>/.vercel/output/functions/api.func/core-app/tests/e2e/",
|
||||
],
|
||||
setupFiles: ["<rootDir>/tests/setup.jest.js"],
|
||||
testPathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/tests/e2e/"],
|
||||
modulePathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/tests/e2e/"],
|
||||
coveragePathIgnorePatterns: [
|
||||
"<rootDir>/.vercel/output/functions/api.func/core-app/node_modules/",
|
||||
"<rootDir>/.vercel/output/functions/api.func/core-app/tests/E2E/",
|
||||
"<rootDir>/node_modules/",
|
||||
"<rootDir>/tests/E2E/",
|
||||
],
|
||||
};
|
||||
|
||||
@@ -3,5 +3,5 @@ export default {
|
||||
transform: {},
|
||||
testEnvironment: "node",
|
||||
coverageProvider: "v8",
|
||||
testMatch: ["<rootDir>/.vercel/output/functions/api.func/core-app/tests/e2e/**/*.test.js"],
|
||||
testMatch: ["<rootDir>/tests/e2e/**/*.test.js"],
|
||||
};
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
{
|
||||
"type": "module"
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
"core-app": "file:core-app"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user