From 9b767dbb2beff9eb6bd7070cd4c66e3a5cbe266b Mon Sep 17 00:00:00 2001 From: Icebob Date: Mon, 1 Apr 2024 22:55:08 +0200 Subject: [PATCH] ci: fix missing password from connection object --- test/integration/tenants.test.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/integration/tenants.test.js b/test/integration/tenants.test.js index ada5d92..c72abef 100644 --- a/test/integration/tenants.test.js +++ b/test/integration/tenants.test.js @@ -765,6 +765,9 @@ module.exports = (getAdapter, adapterType) => { mixins: [baseServiceSchema], methods: { getAdapterByContext(ctx, adapterDef) { + // Somehow the password disappeared from the "adapterDef" + adapterDef = getAdapter(); + const tenantId = ctx.meta.tenantId; if (!tenantId) throw new Error("Missing tenantId!");