17 lines
210 B
JavaScript
17 lines
210 B
JavaScript
// test-helpers.ts
|
|
function buildEvent(params) {
|
|
return {
|
|
id: "",
|
|
kind: 1,
|
|
pubkey: "",
|
|
created_at: 0,
|
|
content: "",
|
|
tags: [],
|
|
sig: "",
|
|
...params
|
|
};
|
|
}
|
|
export {
|
|
buildEvent
|
|
};
|