Skip to content

Commit f06e9db

Browse files
fix: Use Parity nodes in the integration tests. (#1829)
Replacing dwellir node URLs with Parity node URLs
1 parent e79e4a0 commit f06e9db

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/controllers/controllerInjection.spec.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,19 @@ const mockSidecarConfig: ISidecarConfig = {
5353
};
5454

5555
const chainsToNode: Record<string, string> = {
56-
// 'asset-hub-kusama': 'wss://asset-hub-kusama-rpc.dwellir.com',
57-
kusama: 'wss://kusama-rpc.dwellir.com',
58-
// 'asset-hub-westend': 'wss://asset-hub-westend-rpc.dwellir.com',
59-
// astar: 'wss://astar-rpc.dwellir.com',
56+
// 'asset-hub-kusama': 'wss://asset-hub-kusama-rpc.polkadot.io',
57+
kusama: 'wss://kusama-rpc.polkadot.io',
58+
// 'asset-hub-westend': 'wss://asset-hub-westend-rpc.polkadot.io',
59+
// astar: 'wss://astar-rpc.polkadot.io',
6060
bifrost_polkadot: 'wss://bifrost-polkadot.ibp.network',
61-
polkadot: 'wss://polkadot-rpc.dwellir.com',
62-
'coretime-westend': 'wss://coretime-westend-rpc.dwellir.com',
63-
'coretime-polkadot': 'wss://sys.ibp.network/coretime-polkadot',
61+
polkadot: 'wss://rpc.polkadot.io',
62+
'coretime-westend': 'wss://westend-coretime-rpc.polkadot.io',
63+
'coretime-polkadot': 'wss://polkadot-coretime-rpc.polkadot.io',
6464
crust: 'wss://crust-parachain.crustapps.net',
65-
// karura: 'wss://karura-rpc.dwellir.com',
65+
// karura: 'wss://karura-rpc.polkadot.io',
6666
// manta: 'wss://ws.manta.systems',
6767
kilt: 'wss://kilt.ibp.network',
68-
// 'asset-hub-polkadot': 'wss://asset-hub-polkadot-rpc.dwellir.com',
68+
// 'asset-hub-polkadot': 'wss://asset-hub-polkadot-rpc.polkadot.io',
6969
};
7070

7171
describe('controllerInjection', () => {
@@ -99,7 +99,7 @@ describe('controllerInjection', () => {
9999
}
100100

101101
it('should inject default controllers when pallets are not checked (injected-controllers: false) and a custom config is not available', async () => {
102-
const wsProvider = new WsProvider('wss://kusama-rpc.dwellir.com');
102+
const wsProvider = new WsProvider('wss://kusama-rpc.polkadot.io');
103103
const api = await ApiPromise.create({ provider: wsProvider });
104104

105105
jest.spyOn(ApiPromiseRegistry, 'getSpecNameByType').mockImplementation(() => {

0 commit comments

Comments
 (0)