aboutsummaryrefslogtreecommitdiff
path: root/test/setup.ts
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-07-07 17:41:50 +0200
committerHampusM <hampus@hampusmat.com>2021-07-07 17:41:50 +0200
commit86daa8aff22ff378c5e6cbf10f92dc3823fa2ccd (patch)
tree8f99cac799c25bcb788f37143fccecfb4c7553f0 /test/setup.ts
parenta68d02e222c337144d9f384219a893c14e199411 (diff)
Moved Jest timeout to the commit unit test
Diffstat (limited to 'test/setup.ts')
-rw-r--r--test/setup.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/setup.ts b/test/setup.ts
index 92a4f3c..3eaa5e7 100644
--- a/test/setup.ts
+++ b/test/setup.ts
@@ -7,8 +7,6 @@ const promiseExec = promisify(exec);
config({ path: "test/test.env" });
export default async function init() {
- jest.setTimeout(10000);
-
const can_access = await access(process.env.BASE_DIR)
.then(() => true)
.catch(() => false);