Fix jwt-token

This commit is contained in:
2025-09-17 22:32:55 +02:00
parent 6c74c7c524
commit 43b548c05a
5 changed files with 77 additions and 19 deletions

View File

@@ -392,7 +392,7 @@ describe('Models', () => {
});
expect(detectionWithDevice.device).to.exist;
expect(detectionWithDevice.device.id).to.equal(device.id);
expect(detectionWithDevice.device.id).to.equal(String(device.id));
});
});
@@ -537,7 +537,7 @@ describe('Models', () => {
});
expect(logWithDevice.device).to.exist;
expect(logWithDevice.device.id).to.equal(device.id);
expect(logWithDevice.device.id).to.equal(String(device.id));
});
});