File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -71,13 +71,13 @@ jobs:
71
71
node :
72
72
uses : ./.github/workflows/test-node.yml
73
73
with :
74
- nim_wakunode_image : ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.20 .0' }}
74
+ nim_wakunode_image : ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.21 .0' }}
75
75
test_type : node
76
76
77
77
node_optional :
78
78
uses : ./.github/workflows/test-node.yml
79
79
with :
80
- nim_wakunode_image : ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.20 .0' }}
80
+ nim_wakunode_image : ${{ inputs.nim_wakunode_image || 'wakuorg/nwaku:v0.21 .0' }}
81
81
test_type : node-optional
82
82
83
83
node_with_go_waku_master :
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ const WAKU_SERVICE_NODE_PARAMS =
27
27
process . env . WAKU_SERVICE_NODE_PARAMS ?? undefined ;
28
28
const NODE_READY_LOG_LINE = "Node setup complete" ;
29
29
30
- const DOCKER_IMAGE_NAME = process . env . WAKUNODE_IMAGE || "wakuorg/nwaku:v0.20 .0" ;
30
+ const DOCKER_IMAGE_NAME = process . env . WAKUNODE_IMAGE || "wakuorg/nwaku:v0.21 .0" ;
31
31
32
32
const isGoWaku = DOCKER_IMAGE_NAME . includes ( "go-waku" ) ;
33
33
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { promisify } from "util";
3
3
4
4
const execAsync = promisify ( exec ) ;
5
5
6
- const WAKUNODE_IMAGE = process . env . WAKUNODE_IMAGE || "wakuorg/nwaku:v0.20 .0" ;
6
+ const WAKUNODE_IMAGE = process . env . WAKUNODE_IMAGE || "wakuorg/nwaku:v0.21 .0" ;
7
7
8
8
async function main ( ) {
9
9
try {
Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ describe("Waku Light Push", function () {
79
79
payload : new Uint8Array ( )
80
80
} ) ;
81
81
82
+ expect ( pushResponse . recipients . length ) . to . eq ( 0 ) ;
82
83
expect ( pushResponse . errors ) . to . include ( SendError . EMPTY_PAYLOAD ) ;
83
84
expect ( await messageCollector . waitForMessages ( 1 ) ) . to . eq ( false ) ;
84
85
} ) ;
@@ -152,8 +153,7 @@ describe("Waku Light Push", function () {
152
153
} ) ;
153
154
} else {
154
155
expect ( pushResponse . recipients . length ) . to . eq ( 0 ) ;
155
- // Should be `REMOTE_PEER_REJECTED`, tracked with https://github.com/waku-org/nwaku/issues/2059
156
- expect ( pushResponse . errors ) . to . include ( SendError . REMOTE_PEER_FAULT ) ;
156
+ expect ( pushResponse . errors ) . to . include ( SendError . REMOTE_PEER_REJECTED ) ;
157
157
expect ( await messageCollector . waitForMessages ( 1 ) ) . to . eq ( false ) ;
158
158
}
159
159
} ) ;
You can’t perform that action at this time.
0 commit comments