Skip to content

Commit 253b98d

Browse files
authored
test: Remove MCTP test case as we will replace it with FAST_MCTP (#3773)
* test: Remove MCTP test case as we will replace it with FAST_MCTP Signed-off-by: Emre Bogazliyanlioglu <emre@wormholelabs.xyz> * fix: Add wait for view routes CTA Signed-off-by: Emre Bogazliyanlioglu <emre@wormholelabs.xyz> --------- Signed-off-by: Emre Bogazliyanlioglu <emre@wormholelabs.xyz>
1 parent cc410ff commit 253b98d

2 files changed

Lines changed: 1 addition & 33 deletions

File tree

tests/e2e/config/index.ts

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,6 @@ const mayanSWIFT = `{
1616
],
1717
}`;
1818

19-
const mayanMCTP = `{
20-
network: 'mainnet',
21-
coingecko: { customUrl: 'https://coingecko.labsapis.com' },
22-
ui: {
23-
experimental: { enableUIRefreshV3: true },
24-
showInProgressWidget: true,
25-
testOptions: {
26-
enableHeadlessSigner: true,
27-
},
28-
},
29-
routes: [
30-
MayanRouteMCTP,
31-
],
32-
}`;
33-
3419
const CCTPExecutor = `{
3520
network: 'mainnet',
3621
coingecko: { customUrl: 'https://coingecko.labsapis.com' },
@@ -207,23 +192,6 @@ export const testConfigs: Array<TestConfig> = [
207192
amount: '3',
208193
waitForCompletion: true,
209194
},
210-
{
211-
name: 'MayanSwapMCTP',
212-
config: mayanMCTP,
213-
enabled: true,
214-
sourceAsset: {
215-
chain: 'Arbitrum',
216-
symbol: 'USDC',
217-
address: circle.usdcContract.get('Mainnet', 'Arbitrum'),
218-
},
219-
destinationAsset: {
220-
chain: 'Base',
221-
symbol: 'USDC',
222-
address: circle.usdcContract.get('Mainnet', 'Base'),
223-
},
224-
amount: '10',
225-
waitForCompletion: false,
226-
},
227195
{
228196
name: 'CCTPExecutorRoute',
229197
config: CCTPExecutor,

tests/e2e/views/bridge.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ export class BridgeView {
179179
const routeToggle = this.page.getByRole('button', {
180180
name: 'View other routes',
181181
});
182-
await expect(routeToggle).toBeVisible();
182+
await routeToggle.waitFor({ state: 'visible' });
183183
await routeToggle.click();
184184

185185
// Route should be visible and selected by default

0 commit comments

Comments
 (0)