summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/test/index.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/index.ts b/src/test/index.ts
index 89f953b..2ae8633 100644
--- a/src/test/index.ts
+++ b/src/test/index.ts
@@ -6,25 +6,6 @@ function setupNyc() {
const NYC = require("nyc");
// create an nyc instance, config here is the same as your package.json
const nyc = new NYC({
- cache: false,
- cwd: path.join(__dirname, "..", ".."),
- exclude: [
- "**/**.test.js",
- ],
- extension: [
- ".ts",
- ".tsx",
- ],
- hookRequire: true,
- hookRunInContext: true,
- hookRunInThisContext: true,
- instrument: true,
- reporter: ["text", "lcov", "cobertura"],
- require: [
- "ts-node/register",
- "source-map-support/register",
- ],
- sourceMap: true,
});
nyc.reset();
nyc.wrap();