chore: sync submodule state (parent ref update)

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-02 12:14:14 -08:00
parent b6a776e5d7
commit 25c96e210a
316 changed files with 29779 additions and 677 deletions

View File

@@ -4,14 +4,23 @@ test.describe('Chain 138 Snap companion site', () => {
test('loads and shows Connect, Install, or Reconnect', async ({ page }) => {
await page.goto('/', { waitUntil: 'domcontentloaded' });
// Connect and Reconnect are buttons; Install MetaMask Flask is a link
const connectOrReconnect = page.getByRole('button', { name: /Connect|Reconnect/i });
const installLink = page.getByRole('link', { name: /Install MetaMask Flask/i });
await expect(connectOrReconnect.or(installLink).first()).toBeVisible({ timeout: 30_000 });
const connectOrReconnect = page.getByRole('button', {
name: /Connect|Reconnect/i,
});
const installLink = page.getByRole('link', {
name: /Install MetaMask Flask/i,
});
await expect(connectOrReconnect.or(installLink).first()).toBeVisible({
timeout: 30_000,
});
});
test('page has Snap-related content', async ({ page }) => {
await page.goto('/', { waitUntil: 'domcontentloaded' });
const body = page.locator('body');
await expect(body).toContainText(/Connect|Chain 138|Get started|Snap|Install|Reconnect/i, { timeout: 30_000 });
await expect(body).toContainText(
/Connect|Chain 138|Get started|Snap|Install|Reconnect/i,
{ timeout: 30_000 },
);
});
});