Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable parallel for now #157

Merged
merged 1 commit into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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