mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-06-04 10:59:58 +00:00
add comments for known issues
This commit is contained in:
parent
95dbac3c57
commit
b0d658c4a1
@ -153,6 +153,7 @@ describe("Waku Store, cursor", function () {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Should return same as go-waku. Raised bug: https://github.com/waku-org/nwaku/issues/2117
|
||||||
expect(messagesAfterCursor.length).to.eql(0);
|
expect(messagesAfterCursor.length).to.eql(0);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (
|
if (
|
||||||
@ -168,7 +169,7 @@ describe("Waku Store, cursor", function () {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// PubsubTopic is ignored in the cursor. Needs fixing so it throws an error if it doesn't match with Decoder
|
// PubsubTopic is ignored in the cursor: https://github.com/waku-org/js-waku/pull/1640
|
||||||
it.skip("Passing cursor with wrong pubSubTopic", async function () {
|
it.skip("Passing cursor with wrong pubSubTopic", async function () {
|
||||||
await sendMessages(nwaku, totalMsgs, TestContentTopic, DefaultPubSubTopic);
|
await sendMessages(nwaku, totalMsgs, TestContentTopic, DefaultPubSubTopic);
|
||||||
waku = await startAndConnectLightNode(nwaku);
|
waku = await startAndConnectLightNode(nwaku);
|
||||||
|
|||||||
@ -80,6 +80,7 @@ describe("Waku Store, page size", function () {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Possible issue here because pageSize differs across implementations
|
||||||
it("Default pageSize", async function () {
|
it("Default pageSize", async function () {
|
||||||
await sendMessages(nwaku, 20, TestContentTopic, DefaultPubSubTopic);
|
await sendMessages(nwaku, 20, TestContentTopic, DefaultPubSubTopic);
|
||||||
waku = await startAndConnectLightNode(nwaku);
|
waku = await startAndConnectLightNode(nwaku);
|
||||||
|
|||||||
@ -31,7 +31,7 @@ describe("Waku Store, time filter", function () {
|
|||||||
[-19000, -10, 10],
|
[-19000, -10, 10],
|
||||||
[-19000, 1, 4],
|
[-19000, 1, 4],
|
||||||
[-19000, -2, -1],
|
[-19000, -2, -1],
|
||||||
// [-19000, 0, 1000], // skipped because it fails on gowaku
|
// [-19000, 0, 1000], // skipped for now because it fails on gowaku which returns messages > startTime
|
||||||
[-19000, -1000, 0],
|
[-19000, -1000, 0],
|
||||||
[19000, -10, 10], // message in the future
|
[19000, -10, 10], // message in the future
|
||||||
[-19000, 10, -10] // startTime is newer than endTime
|
[-19000, 10, -10] // startTime is newer than endTime
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user