@@ -88,7 +88,7 @@ describe("Waku Filter V2: FilterPush", function () {
88
88
} ) ;
89
89
} ) ;
90
90
91
- it ( "Check received message with invalid timestamp is not received" , async function ( ) {
91
+ it ( "Check message with invalid timestamp is not received" , async function ( ) {
92
92
await subscription . subscribe ( [ TestDecoder ] , messageCollector . callback ) ;
93
93
await delay ( 400 ) ;
94
94
@@ -105,7 +105,7 @@ describe("Waku Filter V2: FilterPush", function () {
105
105
expect ( await messageCollector . waitForMessages ( 1 ) ) . to . eq ( false ) ;
106
106
} ) ;
107
107
108
- it ( "Check received message on other pubsub topic is not received" , async function ( ) {
108
+ it ( "Check message on other pubsub topic is not received" , async function ( ) {
109
109
await subscription . subscribe ( [ TestDecoder ] , messageCollector . callback ) ;
110
110
await delay ( 400 ) ;
111
111
@@ -121,7 +121,7 @@ describe("Waku Filter V2: FilterPush", function () {
121
121
expect ( await messageCollector . waitForMessages ( 1 ) ) . to . eq ( false ) ;
122
122
} ) ;
123
123
124
- it ( "Check received message with no pubsub topic is not received" , async function ( ) {
124
+ it ( "Check message with no pubsub topic is not received" , async function ( ) {
125
125
await subscription . subscribe ( [ TestDecoder ] , messageCollector . callback ) ;
126
126
await delay ( 400 ) ;
127
127
@@ -136,7 +136,7 @@ describe("Waku Filter V2: FilterPush", function () {
136
136
expect ( await messageCollector . waitForMessages ( 1 ) ) . to . eq ( false ) ;
137
137
} ) ;
138
138
139
- it ( "Check received message with no content topic is not received" , async function ( ) {
139
+ it ( "Check message with no content topic is not received" , async function ( ) {
140
140
await subscription . subscribe ( [ TestDecoder ] , messageCollector . callback ) ;
141
141
await delay ( 400 ) ;
142
142
@@ -151,7 +151,7 @@ describe("Waku Filter V2: FilterPush", function () {
151
151
expect ( await messageCollector . waitForMessages ( 1 ) ) . to . eq ( false ) ;
152
152
} ) ;
153
153
154
- it ( "Check received message with no payload is not received" , async function ( ) {
154
+ it ( "Check message with no payload is not received" , async function ( ) {
155
155
await subscription . subscribe ( [ TestDecoder ] , messageCollector . callback ) ;
156
156
await delay ( 400 ) ;
157
157
@@ -171,7 +171,7 @@ describe("Waku Filter V2: FilterPush", function () {
171
171
}
172
172
} ) ;
173
173
174
- it ( "Check received message with non string payload is not received" , async function ( ) {
174
+ it ( "Check message with non string payload is not received" , async function ( ) {
175
175
await subscription . subscribe ( [ TestDecoder ] , messageCollector . callback ) ;
176
176
await delay ( 400 ) ;
177
177
@@ -187,7 +187,7 @@ describe("Waku Filter V2: FilterPush", function () {
187
187
expect ( await messageCollector . waitForMessages ( 1 ) ) . to . eq ( false ) ;
188
188
} ) ;
189
189
190
- it ( "Check received message with extra parameter is not received" , async function ( ) {
190
+ it ( "Check message with extra parameter is not received" , async function ( ) {
191
191
await subscription . subscribe ( [ TestDecoder ] , messageCollector . callback ) ;
192
192
await delay ( 400 ) ;
193
193
@@ -226,7 +226,7 @@ describe("Waku Filter V2: FilterPush", function () {
226
226
} ) ;
227
227
228
228
// Will be skipped until https://github.com/waku-org/js-waku/issues/1464 si done
229
- it . skip ( "Check received message received after jswaku node is restarted" , async function ( ) {
229
+ it . skip ( "Check message received after jswaku node is restarted" , async function ( ) {
230
230
// Subscribe and send message
231
231
await subscription . subscribe ( [ TestDecoder ] , messageCollector . callback ) ;
232
232
await waku . lightPush . send ( TestEncoder , { payload : utf8ToBytes ( "M1" ) } ) ;
@@ -259,7 +259,7 @@ describe("Waku Filter V2: FilterPush", function () {
259
259
} ) ;
260
260
261
261
// Will be skipped until https://github.com/waku-org/js-waku/issues/1464 si done
262
- it . skip ( "Check received message received after nwaku node is restarted" , async function ( ) {
262
+ it . skip ( "Check message received after nwaku node is restarted" , async function ( ) {
263
263
await subscription . subscribe ( [ TestDecoder ] , messageCollector . callback ) ;
264
264
await waku . lightPush . send ( TestEncoder , { payload : utf8ToBytes ( "M1" ) } ) ;
265
265
expect ( await messageCollector . waitForMessages ( 1 ) ) . to . eq ( true ) ;
0 commit comments