Skip to content
8 changes: 2 additions & 6 deletions src/cli/utils/cli-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -1057,9 +1057,7 @@ export const renderTasksStatus = (
: '\n';
const completedMsg =
completedTasksArray.length > 0
? `${completedTasksArray.length}/${tasksArray.length} tasks completed${
completedDetails
}`
? `${completedTasksArray.length}/${tasksArray.length} tasks completed${completedDetails}`
: '';

const failedDetails = detailed
Expand All @@ -1071,9 +1069,7 @@ export const renderTasksStatus = (
: '\n';
const failedMsg =
timedoutTasksArray.length > 0
? `${timedoutTasksArray.length}/${tasksArray.length} tasks failed${
failedDetails
}`
? `${timedoutTasksArray.length}/${tasksArray.length} tasks failed${failedDetails}`
: '';
const statusMsg =
runningTasksArray.length > 0
Expand Down
2 changes: 1 addition & 1 deletion src/common/utils/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const networkConfigs = [
voucherSubgraph: undefined, // no voucher
bridge: {}, // no bridge
shouldRegisterNetwork: false,
isExperimental: true,
isExperimental: false,
},
{
id: 42161,
Expand Down
8 changes: 4 additions & 4 deletions test/lib/e2e/IExecConfig.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ describe('[IExecConfig]', () => {
);
expect(createConfig).toThrow(errors.ConfigurationError);
});
describe('allowExperimentalNetworks', () => {
describe.skip('allowExperimentalNetworks', () => {
test('throw with experimental chains when allowExperimentalNetworks is not enabled', () => {
const createConfig = () =>
new IExecConfig({ ethProvider: 'arbitrum-sepolia-testnet' });
Expand Down Expand Up @@ -242,7 +242,7 @@ describe('[IExecConfig]', () => {
);
expect(createConfig).toThrow(errors.ConfigurationError);
});
describe('allowExperimentalNetworks', () => {
describe.skip('allowExperimentalNetworks', () => {
test('throw with experimental chains when allowExperimentalNetworks is not enabled', () => {
const createConfig = () => new IExecConfig({ ethProvider: 421614 });
expect(createConfig).toThrow(
Expand Down Expand Up @@ -421,7 +421,7 @@ describe('[IExecConfig]', () => {
network.getPlugin('org.ethers.plugins.network.Ens').address,
).toBe('0x5f5B93fca68c9C79318d1F3868A354EE67D8c006');
});
describe('allowExperimentalNetworks', () => {
describe.skip('allowExperimentalNetworks', () => {
const experimentalNetworkRpcUrl = getChainDefaults(421614, {
allowExperimentalNetworks: true,
}).host;
Expand Down Expand Up @@ -526,7 +526,7 @@ describe('[IExecConfig]', () => {
network.getPlugin('org.ethers.plugins.network.Ens').address,
).toBe(iexecTestChain.defaults.ensRegistryAddress);
});
describe('allowExperimentalNetworks', () => {
describe.skip('allowExperimentalNetworks', () => {
const experimentalNetworkRpcUrl = getChainDefaults(421614, {
allowExperimentalNetworks: true,
}).host;
Expand Down
2 changes: 1 addition & 1 deletion test/lib/e2e/utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ describe('utils', () => {
).wallet.checkBalances(NULL_ADDRESS),
).resolves.toBeDefined();
});
test('allowExperimentalNetworks option allow creating signer connected to an experimental network', async () => {
test.skip('allowExperimentalNetworks option allow creating signer connected to an experimental network', async () => {
expect(() =>
utils.getSignerFromPrivateKey(
'arbitrum-sepolia-testnet',
Expand Down
2 changes: 1 addition & 1 deletion test/lib/unit/config.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe('getChainDefaults', () => {
test('unknown id returns empty object', () => {
expect(getChainDefaults(0)).toEqual({});
});
test('experimental networks are accessible with `allowExperimentalNetworks:true` hidden by default', () => {
test.skip('experimental networks are accessible with `allowExperimentalNetworks:true` hidden by default', () => {
expect(getChainDefaults(421614)).toEqual({});
expect(
getChainDefaults(421614, { allowExperimentalNetworks: true }).host,
Expand Down
Loading