Skip to content

Commit 47fc332

Browse files
test: more (#4695)
1 parent a199bc3 commit 47fc332

File tree

23 files changed

+2031
-2760
lines changed

23 files changed

+2031
-2760
lines changed

.c8rc.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"all": true,
3+
"clean": false,
4+
"root": ".",
5+
"include": ["packages/*/src/**/*.ts"],
6+
"reporter": ["text", "html", "lcov"],
7+
"exclude-after-remap": true
8+
}

.nycrc

Lines changed: 0 additions & 10 deletions
This file was deleted.

jest.config.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
module.exports = {
22
testEnvironment: "node",
3+
coverageProvider: "v8",
4+
collectCoverage: false,
35
collectCoverageFrom: ["packages/*/src/**/*.ts"],
46
coverageDirectory: ".jest_coverage",
57
coverageReporters: ["json"],
@@ -18,8 +20,4 @@ module.exports = {
1820
setupFilesAfterEnv: ["<rootDir>/scripts/setup-test.js"],
1921
globalTeardown: "<rootDir>/scripts/cleanup-test.js",
2022
globalSetup: "<rootDir>/scripts/global-setup.js",
21-
modulePathIgnorePatterns: [
22-
"<rootDir>/test/loader/test-loader",
23-
"<rootDir>/test/plugin/test-plugin",
24-
],
2523
};

0 commit comments

Comments
 (0)