@@ -3,7 +3,7 @@ const {act, renderHook} = require('@testing-library/react-hooks/dom')
3
3
const { useFeed, useBufferedFeeds, useAccount, useAccountVotes, useAccountComments, debugUtils} = require ( '../../dist' )
4
4
const accountsActions = require ( '../../dist/stores/accounts/accounts-actions' )
5
5
const testUtils = require ( '../../dist/lib/test-utils' ) . default
6
- const { offlineIpfs, pubsubIpfs} = require ( '../test-server/config' )
6
+ const { offlineIpfs, pubsubIpfs, plebbitRpc } = require ( '../test-server/config' )
7
7
const signers = require ( '../fixtures/signers' )
8
8
const subplebbitAddress = signers [ 0 ] . address
9
9
const isBase64 = ( testString ) => / ^ ( [ 0 - 9 a - z A - Z + / ] { 4 } ) * ( ( [ 0 - 9 a - z A - Z + / ] { 2 } = = ) | ( [ 0 - 9 a - z A - Z + / ] { 3 } ) ) ? $ / gm. test ( testString )
@@ -15,17 +15,25 @@ const timeout = 600000
15
15
const localGatewayUrl = `http://localhost:${ offlineIpfs . gatewayPort } `
16
16
const localIpfsProviderUrl = `http://localhost:${ offlineIpfs . apiPort } `
17
17
const localPubsubProviderUrl = `http://localhost:${ pubsubIpfs . apiPort } /api/v0`
18
+ const localPlebbitRpcUrl = `ws://127.0.0.1:${ plebbitRpc . port } `
18
19
const plebbitOptionsTypes = {
19
20
'kubo rpc client' : {
20
21
kuboRpcClientsOptions : [ localIpfsProviderUrl ] ,
21
22
// define pubsubKuboRpcClientsOptions with localPubsubProviderUrl because
22
23
// localIpfsProviderUrl is offline node with no pubsub
23
24
pubsubKuboRpcClientsOptions : [ localPubsubProviderUrl ] ,
25
+ resolveAuthorAddresses : false ,
24
26
validatePages : false ,
25
27
} ,
26
28
'gateway and pubsub provider' : {
27
29
ipfsGatewayUrls : [ localGatewayUrl ] ,
28
30
pubsubKuboRpcClientsOptions : [ localPubsubProviderUrl ] ,
31
+ resolveAuthorAddresses : false ,
32
+ validatePages : false ,
33
+ } ,
34
+ 'plebbit rpc client' : {
35
+ plebbitRpcClientsOptions : [ localPlebbitRpcUrl ] ,
36
+ resolveAuthorAddresses : false ,
29
37
validatePages : false ,
30
38
} ,
31
39
}
0 commit comments