diff --git a/CommonServer/Tests/Services/ProbeService.test.ts b/CommonServer/Tests/Services/ProbeService.test.ts index 5289d69aab..4b09f8a2c7 100644 --- a/CommonServer/Tests/Services/ProbeService.test.ts +++ b/CommonServer/Tests/Services/ProbeService.test.ts @@ -200,7 +200,7 @@ describe('probeService', () => { expect(fetchedProbe!.name).toBe(name); expect(fetchedProbe?._id).toBeTruthy(); expect(fetchedProbe?.key).toBeFalsy(); - expect(fetchedProbe?.createdAt).toBeFalsy(); + expect(fetchedProbe?.createdAt).toBeTruthy(); // this is the default column and it should be always truthy expect(fetchedProbe?.createdByUserId).toBeFalsy(); expect(fetchedProbe?.probeVersion).toBeFalsy(); });