From c78862f92c76480fe6fdb6f256149bb162896f2d Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Thu, 5 Oct 2023 15:54:39 -0600 Subject: [PATCH] test: remove helper --- .mocharc.json | 2 +- test/helpers/init.js | 2 -- test/tsconfig.json | 4 ---- 3 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 test/helpers/init.js diff --git a/.mocharc.json b/.mocharc.json index 23de305e..51eba57f 100644 --- a/.mocharc.json +++ b/.mocharc.json @@ -1,7 +1,7 @@ { "recursive": true, "reporter": "spec", - "require": ["test/helpers/init.js", "ts-node/register"], + "require": ["ts-node/register"], "timeout": 0, "watch-files": ["test/**/*.ts", "src/**/*.ts"], "watch-extensions": ["ts"], diff --git a/test/helpers/init.js b/test/helpers/init.js deleted file mode 100644 index 6fde66e4..00000000 --- a/test/helpers/init.js +++ /dev/null @@ -1,2 +0,0 @@ -import path from 'node:path' -process.env.TS_NODE_PROJECT = path.resolve('test/tsconfig.json') diff --git a/test/tsconfig.json b/test/tsconfig.json index aa3859bb..b9fdd635 100644 --- a/test/tsconfig.json +++ b/test/tsconfig.json @@ -1,8 +1,4 @@ { - "declaration": false, "extends": "../tsconfig", - "compilerOptions": { - "sourceMap": true - }, "include": ["./**/*", "../src/**/*"] }