fix validateEvent() signature.

This commit is contained in:
fiatjaf
2023-12-19 10:36:54 -03:00
parent f77b9eab10
commit 2571db9afc
2 changed files with 1 additions and 3 deletions

View File

@@ -122,9 +122,7 @@ describe('Event', () => {
test('should return false for a non object event', () => {
const nonObjectEvent = ''
const isValid = validateEvent(nonObjectEvent)
expect(isValid).toEqual(false)
})