Skip to content
Merged
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
4 changes: 2 additions & 2 deletions test/lib/e2e/IExecWorkerpoolModule.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,13 +264,13 @@ describe('workerpool', () => {

describe('on networks relying on compass', () => {
// TODO include compass in stack instead of using arbitrum-sepolia-testnet
test.skip('resolves the url against Compass', async () => {
test('resolves the url against Compass', async () => {
const readOnlyIExec = new IExec(
{ ethProvider: 'arbitrum-sepolia-testnet' },
{ allowExperimentalNetworks: true },
);
const apiUrl = await readOnlyIExec.workerpool.getWorkerpoolApiUrl(
'0x39C3CdD91A7F1c4Ed59108a9da4E79dE9A1C1b59',
'0xB967057a21dc6A66A29721d96b8Aa7454B7c383F',
);
expect(typeof apiUrl).toBe('string');
expect(apiUrl.startsWith('https://')).toBe(true);
Expand Down