mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
fa8d82d82a
* fix: Restore uuid package on frontend * Remove legacy moduleNameMapper * Add lint rule * lint - getRandomValues can be used without SSL * Update Comment.ts
60 lines
1.8 KiB
JSON
60 lines
1.8 KiB
JSON
{
|
|
"workerIdleMemoryLimit": "0.75",
|
|
"maxWorkers": "50%",
|
|
"projects": [
|
|
{
|
|
"displayName": "server",
|
|
"roots": ["<rootDir>/server", "<rootDir>/plugins"],
|
|
"moduleNameMapper": {
|
|
"^@server/(.*)$": "<rootDir>/server/$1",
|
|
"^@shared/(.*)$": "<rootDir>/shared/$1"
|
|
},
|
|
"setupFiles": ["<rootDir>/__mocks__/console.js"],
|
|
"setupFilesAfterEnv": ["<rootDir>/server/test/setup.ts"],
|
|
"globalTeardown": "<rootDir>/server/test/globalTeardown.js",
|
|
"testEnvironment": "node"
|
|
},
|
|
{
|
|
"displayName": "app",
|
|
"roots": ["<rootDir>/app"],
|
|
"moduleNameMapper": {
|
|
"^~/(.*)$": "<rootDir>/app/$1",
|
|
"^@shared/(.*)$": "<rootDir>/shared/$1",
|
|
"^.*[.](gif|ttf|eot|svg)$": "<rootDir>/__test__/fileMock.js"
|
|
},
|
|
"modulePaths": ["<rootDir>/app"],
|
|
"setupFiles": ["<rootDir>/__mocks__/window.js"],
|
|
"setupFilesAfterEnv": ["<rootDir>/app/test/setup.ts"],
|
|
"testEnvironment": "jsdom",
|
|
"testEnvironmentOptions": {
|
|
"url": "http://localhost"
|
|
}
|
|
},
|
|
{
|
|
"displayName": "shared-node",
|
|
"roots": ["<rootDir>/shared"],
|
|
"moduleNameMapper": {
|
|
"^@server/(.*)$": "<rootDir>/server/$1",
|
|
"^@shared/(.*)$": "<rootDir>/shared/$1"
|
|
},
|
|
"setupFiles": ["<rootDir>/__mocks__/console.js"],
|
|
"setupFilesAfterEnv": ["<rootDir>/shared/test/setup.ts"],
|
|
"testEnvironment": "node"
|
|
},
|
|
{
|
|
"displayName": "shared-jsdom",
|
|
"roots": ["<rootDir>/shared"],
|
|
"moduleNameMapper": {
|
|
"^~/(.*)$": "<rootDir>/app/$1",
|
|
"^@shared/(.*)$": "<rootDir>/shared/$1",
|
|
"^.*[.](gif|ttf|eot|svg)$": "<rootDir>/__test__/fileMock.js"
|
|
},
|
|
"setupFiles": ["<rootDir>/__mocks__/window.js"],
|
|
"testEnvironment": "jsdom",
|
|
"testEnvironmentOptions": {
|
|
"url": "http://localhost"
|
|
}
|
|
}
|
|
]
|
|
}
|