diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-26 11:25:52 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-26 11:25:52 -0600 |
commit | 7e3f6f030680a8cf7b5baa3ce6f33acd5766fca8 (patch) | |
tree | 38ad7a0c586caa6cd0635653cb812d602210b718 /jest | |
parent | c4ba5e7fd507a2f5295fd3fcbcea0796223c744c (diff) | |
download | voidsky-7e3f6f030680a8cf7b5baa3ce6f33acd5766fca8.tar.zst |
Fix all type errors
Diffstat (limited to 'jest')
-rw-r--r-- | jest/test-pds.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jest/test-pds.ts b/jest/test-pds.ts index 01b37efb0..31dcb3cb8 100644 --- a/jest/test-pds.ts +++ b/jest/test-pds.ts @@ -179,7 +179,7 @@ async function genMockData(pdsUrl: string): Promise<TestUsers> { did: subject.did, declarationCid: subject.declarationCid, }, - createdAt: date.next().value, + createdAt: date.next().value || '', }, ) } |