From 8f18fe4b24da317e054abb753e3a1b211403d403 Mon Sep 17 00:00:00 2001 From: Alexander Borg Date: Mon, 15 Sep 2025 15:25:41 +0200 Subject: [PATCH] Fix jwt-token --- server/tests/models/models.test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/tests/models/models.test.js b/server/tests/models/models.test.js index 9eaf15b..039ff4a 100644 --- a/server/tests/models/models.test.js +++ b/server/tests/models/models.test.js @@ -65,6 +65,7 @@ describe('Models', () => { const tenant2 = await createTestTenant({ slug: 'tenant2' }); const timestamp = Date.now(); + console.log('Creating user1 with tenant:', tenant1.id); const user1 = await models.User.create({ username: 'testuser', email: `test1-${timestamp}@example.com`, @@ -72,6 +73,7 @@ describe('Models', () => { tenant_id: tenant1.id }); + console.log('Creating user2 with tenant:', tenant2.id); const user2 = await models.User.create({ username: 'testuser', email: `test2-${timestamp}@example.com`,