aboutsummaryrefslogtreecommitdiff
path: root/test/int
diff options
context:
space:
mode:
Diffstat (limited to 'test/int')
-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);