From 27ecfedfdf3773453f6e96ac84cdabc206f2ba52 Mon Sep 17 00:00:00 2001 From: arunvishnun <1584121+arunvishnun@users.noreply.github.com> Date: Tue, 29 Nov 2022 13:40:32 -0800 Subject: [PATCH] fix types issues in multiple packages (#1918) * fix types issues in multiple packages Co-authored-by: Arun Vishnu --- packages/subapp-server/test/spec/fastify-plugin.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/subapp-server/test/spec/fastify-plugin.spec.js b/packages/subapp-server/test/spec/fastify-plugin.spec.js index ccbdcf91d..4085f4c76 100644 --- a/packages/subapp-server/test/spec/fastify-plugin.spec.js +++ b/packages/subapp-server/test/spec/fastify-plugin.spec.js @@ -52,7 +52,7 @@ describe("fastify-plugin", function () { it("invokes subappServer's setup if it exists", async () => { const server = await require("@xarc/fastify-server")({ deferStart: true, - connection: { port: 0, host: "localhost" } + connection: { port: 3005, host: "localhost" } }); const srcDir = Path.join(__dirname, "../data/fastify-plugin-test");