Skip to content

Commit

Permalink
disable parallel for now
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc committed Jan 18, 2024
1 parent 4a46086 commit 504beef
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion helpers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export { check, checkEvents, checkHrmp, checkSystemEvents, checkUmp }

export * from '@acala-network/chopsticks-testing'

const defaultTimeout = process.env.CI ? 180000 : 120000
const defaultTimeout = process.env.CI ? 180000 : 240000

export const jest = (filename: string) => {
const { beforeEach, afterEach, afterAll, expect, describe, it } = (Bun as any).jest(filename) // workaround https://github.com/oven-sh/bun/issues/7873
Expand Down
4 changes: 2 additions & 2 deletions networks/all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import darwiniaConfig from './darwinia'
import hydraDXConfig from './hydraDX'
import interlayConfig from './interlay'
import moonbeamConfig from './moonbeam'
import parallelConfig from './parallel'
// import parallelConfig from './parallel'
import phalaConfig from './phala'
import polkadotConfig from './polkadot'
import statemintConfig from './statemint'
Expand All @@ -26,7 +26,7 @@ const all = {
hydraDX: hydraDXConfig,
bifrost: bifrostConfig,
centrifuge: centrifugeConfig,
parallel: parallelConfig,
// parallel: parallelConfig,
crust: crustConfig,
unique: uniqueConfig,
interlay: interlayConfig,
Expand Down
2 changes: 1 addition & 1 deletion networks/bifrost.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
},
kusama: {
name: 'bifrost' as const,
endpoint: 'wss://bifrost-rpc.dwellir.com',
endpoint: 'wss://bifrost-rpc.liebi.com/ws',
},
config: ({ alice }) => ({
storages: {
Expand Down
2 changes: 1 addition & 1 deletion scripts/configs/bifrost.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extensions:
client:
endpoints:
- wss://bifrost-rpc.dwellir.com:443
- wss://bifrost-rpc.liebi.com/ws
event_bus:
substrate_api:
stale_timeout_seconds: 60
Expand Down
40 changes: 20 additions & 20 deletions tests/bridge-sdk/polkadot.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,26 +61,26 @@ const tests = [
// },

// RpcError: 1: Error: createType(Lookup4):: Unable to construct number from multi-key object
{
from: 'parallel',
to: 'acala',
token: 'PARA',
},
{
from: 'acala',
to: 'parallel',
token: 'PARA',
},
{
from: 'parallel',
to: 'acala',
token: 'ACA',
},
{
from: 'acala',
to: 'parallel',
token: 'ACA',
},
// {
// from: 'parallel',
// to: 'acala',
// token: 'PARA',
// },
// {
// from: 'acala',
// to: 'parallel',
// token: 'PARA',
// },
// {
// from: 'parallel',
// to: 'acala',
// token: 'ACA',
// },
// {
// from: 'acala',
// to: 'parallel',
// token: 'ACA',
// },

// Chopsticks are currently not supported.
// {
Expand Down

0 comments on commit 504beef

Please sign in to comment.