-
-
Notifications
You must be signed in to change notification settings - Fork 457
/
jest.config.js
56 lines (56 loc) · 2.16 KB
/
jest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
module.exports = {
clearMocks: true,
collectCoverage: true,
collectCoverageFrom: ["<rootDir>/packages/**/*.{js,ts}"],
moduleNameMapper: {
"fs-extra": "<rootDir>/node_modules/fs-extra",
"@sls-next/core/package.json": "<rootDir>/packages/libs/core/package.json",
"@sls-next/core/dist/module(.*)": "<rootDir>/packages/libs/core/src$1",
"@sls-next/core/dist(.*)": "<rootDir>/packages/libs/core/src$1",
"@sls-next/core(.*)": "<rootDir>/packages/libs/core/src$1"
},
coverageDirectory: "<rootDir>/coverage/",
coveragePathIgnorePatterns: [
"<rootDir>/packages/deprecated/serverless-plugin/utils/yml/cfSchema.js",
"<rootDir>/packages/deprecated/serverless-plugin/utils/test",
"/.serverless_nextjs/",
"/fixtures/",
"/fixture/",
"/examples/",
"/dist/",
"/e2e-tests/",
"/tests/",
"/scripts/",
"babel.config.js",
"jest.config.js",
"<rootDir>/packages/serverless-components/aws-s3",
"<rootDir>/packages/libs/serverless-patched",
"<rootDir>/packages/libs/lambda-at-edge/src/render/renderStaticPage.ts",
"<rootDir>/packages/libs/lambda-at-edge/src/default-handler-v2.ts",
"<rootDir>/packages/libs/lambda-at-edge/src/regeneration-handler-v2.ts",
"<rootDir>/packages/libs/core/src/defaultHandler.ts",
"<rootDir>/packages/libs/core/src/regenerationHandler.ts",
"<rootDir>/packages/libs/core/src/platform/platformClient.ts",
"<rootDir>/packages/libs/core/src/build/builder.ts",
"<rootDir>/packages/libs/aws-common/src/awsPlatformClient.ts",
"<rootDir>/packages/libs/lambda/"
],
watchPathIgnorePatterns: ["/fixture/", "/fixtures/"],
testPathIgnorePatterns: [
"<rootDir>/packages/deprecated/serverless-plugin/*",
"/.next/",
"/node_modules/",
"/fixtures/",
"/fixture/",
"/examples/",
"/integration/",
"/cypress/",
"/sharp_node_modules/",
"aws-sdk.mock.ts"
],
setupFiles: ["<rootDir>/jest.setup.js"],
modulePathIgnorePatterns: ["/sharp_node_modules/"],
testSequencer: "<rootDir>/jest-sequencer.js",
modulePaths: ["<rootDir>/packages/libs/lambda"], // this allows us to use absolute imports from these packages
reporters: ["default", "jest-junit"]
};