mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
a54e66e19a
* Lazy queues, correctly closing Redis and server * feedback * fix: Tests not correctly split across matrix
64 lines
2.0 KiB
JSON
64 lines
2.0 KiB
JSON
{
|
|
"workerIdleMemoryLimit": "0.75",
|
|
"maxWorkers": "50%",
|
|
"transformIgnorePatterns": ["node_modules/(?!(franc|trigram-utils)/)"],
|
|
"projects": [
|
|
{
|
|
"displayName": "server",
|
|
"roots": ["<rootDir>/server", "<rootDir>/plugins"],
|
|
"moduleNameMapper": {
|
|
"^@server/(.*)$": "<rootDir>/server/$1",
|
|
"^@shared/(.*)$": "<rootDir>/shared/$1"
|
|
},
|
|
"setupFiles": [
|
|
"<rootDir>/__mocks__/console.js",
|
|
"<rootDir>/server/test/setupMocks.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"
|
|
}
|
|
}
|
|
]
|
|
}
|