aboutsummaryrefslogtreecommitdiff
path: root/test/int/api.int.test.ts
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-08-18 17:29:55 +0200
committerHampusM <hampus@hampusmat.com>2021-08-18 17:29:55 +0200
commitd1a1b7dc947063aef5f8375a6a1e03246b272c84 (patch)
treef5cb9bd6d4b5463d9d022026ac6fea87cb6ebe02 /test/int/api.int.test.ts
parent6ed078de30a7bf35deace728857d1d293d59eb15 (diff)
Implemented caching for certain API endpoints, Added documentation & made backend-fixes
Diffstat (limited to 'test/int/api.int.test.ts')
-rw-r--r--test/int/api.int.test.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/int/api.int.test.ts b/test/int/api.int.test.ts
index e1392d6..ae2804e 100644
--- a/test/int/api.int.test.ts
+++ b/test/int/api.int.test.ts
@@ -16,16 +16,19 @@ describe("API", () => {
let app: FastifyInstance;
beforeAll(async() => {
- app = buildApp({
+ app = await buildApp({
host: host,
port: port,
title: "Bob's cool projects",
about: "All of my personal projects. Completely FOSS.",
git_dir: env.GIT_DIR,
+ cache: {
+ enabled: false
+ },
dev: {
port: 0
}
- });
+ }, null);
await app.listen(port);