diff options
author | HampusM <hampus@hampusmat.com> | 2021-07-07 17:30:33 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-07-07 17:30:33 +0200 |
commit | a68d02e222c337144d9f384219a893c14e199411 (patch) | |
tree | 94155fd618764ba44148e4b3b081f4b6a2ee6385 /test | |
parent | c7d7d1e207babcf1d33b305811556687b0a85dd5 (diff) |
Increased Jest timeout
Diffstat (limited to 'test')
-rw-r--r-- | test/setup.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/setup.ts b/test/setup.ts index 3eaa5e7..92a4f3c 100644 --- a/test/setup.ts +++ b/test/setup.ts @@ -7,6 +7,8 @@ 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); |