summary refs log tree commit diff
path: root/cdn/tests/cdn_endpoints.test.js
diff options
context:
space:
mode:
authorThe Arcane Brony <myrainbowdash949@gmail.com>2021-12-21 20:49:58 +0000
committerThe Arcane Brony <myrainbowdash949@gmail.com>2021-12-21 21:49:58 +0100
commita12c372f0476e9026fbcf648cc7bbbc9d67b6d6f (patch)
tree505cbace8681e2f3af6eb61eb429daf339d4db5c /cdn/tests/cdn_endpoints.test.js
parentRepo cleanup, remove fs-extras (diff)
downloadserver-a12c372f0476e9026fbcf648cc7bbbc9d67b6d6f.tar.xz
Improve build scripts, strip more fs-extras
Diffstat (limited to '')
-rw-r--r--cdn/tests/cdn_endpoints.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/cdn/tests/cdn_endpoints.test.js b/cdn/tests/cdn_endpoints.test.js

index 8cf16748..5a543e54 100644 --- a/cdn/tests/cdn_endpoints.test.js +++ b/cdn/tests/cdn_endpoints.test.js
@@ -1,6 +1,6 @@ const dotenv = require("dotenv"); const path = require("path"); -const fse = require("fs-extra"); +const fs = require("fs"); dotenv.config(); // TODO: write unittest to check if FileStorage.ts is working @@ -21,7 +21,7 @@ if (process.env.STORAGE_PROVIDER === "file") { } else { process.env.STORAGE_LOCATION = path.join(__dirname, "..", "files", "/"); } - fse.ensureDirSync(process.env.STORAGE_LOCATION); + if(!fs.existsSync(process.env.STORAGE_LOCATION)) fs.mkdirSync(process.env.STORAGE_LOCATION, {recursive:true}); } const { CDNServer } = require("../dist/Server"); const { Config } = require("@fosscord/util");