mirror of
https://github.com/outline/outline.git
synced 2026-05-08 02:50:30 -05:00
3f3a70d996
* migration * Auto detect language and adjust line-height accordingly * Remove accidental commit * Remove unneccessary adjustment * test * mock
61 lines
1.9 KiB
JSON
61 lines
1.9 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"],
|
|
"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"
|
|
}
|
|
}
|
|
]
|
|
}
|