-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathjest.config.js
More file actions
48 lines (47 loc) · 2.43 KB
/
jest.config.js
File metadata and controls
48 lines (47 loc) · 2.43 KB
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
/*
Copyright 2022 The Dapr Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
module.exports = {
testEnvironment: "<rootDir>/test/e2e/helpers/CustomNodeEnvironment.cjs",
setupFiles: ["<rootDir>/jest.setup.js"],
collectCoverage: true,
coverageReporters: ["lcov"],
collectCoverageFrom: ["src/**/*.ts", "!src/proto/**"],
modulePathIgnorePatterns: ["<rootDir>/build/"],
// Load .github/scripts/*.js files as native CJS — they have no TypeScript syntax.
transformIgnorePatterns: ["/node_modules/", "/.github/"],
// Post-process results to remove spurious "Test suite failed to run" entries
// caused by empty AggregateErrors from testcontainers/ssh2 SubtleCrypto handle
// GC during container teardown. All individual tests pass; only the suite-level
// unhandledRejection handler catches these, so we strip them here.
testResultsProcessor: "<rootDir>/test/e2e/helpers/filterAggregateErrors.cjs",
moduleNameMapper: {
"^@bufbuild/protobuf/wkt$": "<rootDir>/node_modules/@bufbuild/protobuf/dist/cjs/wkt/index.js",
"^@bufbuild/protobuf/codegenv2$": "<rootDir>/node_modules/@bufbuild/protobuf/dist/cjs/codegenv2/index.js",
"^@bufbuild/protobuf/codegenv1$": "<rootDir>/node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/index.js",
"^@bufbuild/protobuf/wire$": "<rootDir>/node_modules/@bufbuild/protobuf/dist/cjs/wire/index.js",
"^@connectrpc/connect/protocol$": "<rootDir>/node_modules/@connectrpc/connect/dist/cjs/protocol/index.js",
"^@connectrpc/connect/protocol-connect$": "<rootDir>/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/index.js",
"^@connectrpc/connect/protocol-grpc$": "<rootDir>/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/index.js",
"^@connectrpc/connect/protocol-grpc-web$": "<rootDir>/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/index.js",
},
transform: {
"^.+\\.[jt]sx?$": [
"ts-jest",
{
tsconfig: {
allowJs: true,
},
},
],
},
};