Skip to content

Commit

Permalink
fix: update ws addresses used for e2e tests (#780)
Browse files Browse the repository at this point in the history
  • Loading branch information
TarikGul committed Dec 1, 2021
1 parent a97ca77 commit b7743f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,31 +26,31 @@ export const defaultSasPackOpts = {

export const config: Record<string, IChainConfig> = {
polkadot: {
wsUrl: 'wss://rpc.polkadot.io',
wsUrl: 'wss://polkadot.api.onfinality.io/public-ws',
JestProcOpts: {
...defaultJestOpts,
args: ['test:e2e-tests', '--chain', 'polkadot'],
},
SasStartOpts: defaultSasStartOpts,
},
kusama: {
wsUrl: 'wss://kusama-rpc.polkadot.io',
wsUrl: 'wss://kusama.api.onfinality.io/public-ws',
JestProcOpts: {
...defaultJestOpts,
args: ['test:e2e-tests', '--chain', 'kusama'],
},
SasStartOpts: defaultSasStartOpts,
},
westend: {
wsUrl: 'wss://westend-rpc.polkadot.io',
wsUrl: 'wss://westend.api.onfinality.io/public-ws',
JestProcOpts: {
...defaultJestOpts,
args: ['test:e2e-tests', '--chain', 'westend'],
},
SasStartOpts: defaultSasStartOpts,
},
statemine: {
wsUrl: 'wss://kusama-statemine-rpc.paritytech.net',
wsUrl: 'wss://statemine.api.onfinality.io/public-ws',
JestProcOpts: {
...defaultJestOpts,
args: ['test:e2e-tests', '--chain', 'statemine'],
Expand Down

0 comments on commit b7743f4

Please sign in to comment.