bug: empty relay list fallback

This commit is contained in:
2023-06-13 11:40:09 +01:00
parent 5b3edc0f59
commit a7fa996e84
3 changed files with 34 additions and 3 deletions

View File

@ -0,0 +1,31 @@
import { splitAllByWriteRelays } from "../src/GossipModel"
describe("GossipModel", () => {
it("should not output empty", () => {
const Relays = {
get: (pk?: string) => {
return [];
}
}
const a = [{
"until": 1686651693,
"limit": 200,
"kinds": [
1,
6,
6969
],
"authors": [
"3bf0c63fcb93463407af97a5e5ee64fa883d107ef9e558472c4eb9aaaefa459d"
]
}];
const output = splitAllByWriteRelays(Relays, a);
expect(output).toEqual([
{
relay: "",
filters: a
}
])
})
})