mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
Fix DittoPgStore req test
This commit is contained in:
parent
006a96d0eb
commit
36ffd4283a
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ Deno.test('req streaming', async () => {
|
||||||
const controller = new AbortController();
|
const controller = new AbortController();
|
||||||
|
|
||||||
const promise = (async () => {
|
const promise = (async () => {
|
||||||
for await (const msg of relay.req([{ since: 0 }], { signal: controller.signal })) {
|
for await (const msg of relay.req([{ limit: 0 }], { signal: controller.signal })) {
|
||||||
msgs.push(msg);
|
msgs.push(msg);
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue