This commit is contained in:
Simon Larsen 2022-08-03 12:50:24 +01:00
parent f7099d8bf5
commit 8e4db99c9c
No known key found for this signature in database
GPG Key ID: AB45983AA9C81CDE

View File

@ -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();
});