mirror of
https://github.com/luxfi/wallet.git
synced 2026-07-27 03:37:41 +00:00
Copies apps/extension, apps/mobile and 10 pkgs (wallet, ui, config, utilities, sessions, gating, notifications, analytics, eslint-config, prices) into a standalone pnpm workspace. Resolves merge conflict markers in extension and mobile package.json files, strips build artifacts (.wxt, .output, Pods).
45 lines
1.6 KiB
TypeScript
45 lines
1.6 KiB
TypeScript
import { expect } from '@playwright/test'
|
|
import { onboardedExtensionTest as test } from 'e2e/fixtures/extension.fixture'
|
|
import { waitForBackgroundReady } from 'e2e/utils/extension-helpers'
|
|
|
|
test.describe('Wallet Connection to Uniswap', () => {
|
|
test('extension is detected by Uniswap app', async ({ context }) => {
|
|
// Ensure background script is ready
|
|
await waitForBackgroundReady(context)
|
|
|
|
// Open Uniswap app in a new tab
|
|
const uniswapPage = await context.newPage()
|
|
await uniswapPage.goto('https://app.uniswap.org', { waitUntil: 'domcontentloaded' })
|
|
|
|
// Wait a bit for the ethereum provider to be injected
|
|
await uniswapPage.waitForTimeout(3000)
|
|
|
|
// Check that window.ethereum exists
|
|
const hasEthereumProvider = await uniswapPage.evaluate(() => {
|
|
return typeof window.ethereum !== 'undefined'
|
|
})
|
|
expect(hasEthereumProvider).toBe(true)
|
|
|
|
// Check if the provider is properly injected and functional
|
|
const providerInfo = await uniswapPage.evaluate(() => {
|
|
if (!window.ethereum) {
|
|
return null
|
|
}
|
|
return {
|
|
hasRequest: typeof (window.ethereum as any).request === 'function',
|
|
hasOn: typeof (window.ethereum as any).on === 'function',
|
|
isMetaMask: (window.ethereum as any).isMetaMask || false,
|
|
// Get all properties for debugging
|
|
properties: Object.getOwnPropertyNames(window.ethereum).sort(),
|
|
}
|
|
})
|
|
|
|
expect(providerInfo).not.toBeNull()
|
|
expect(providerInfo?.hasRequest).toBe(true)
|
|
expect(providerInfo?.hasOn).toBe(true)
|
|
|
|
// The Uniswap extension presents itself as MetaMask-compatible
|
|
expect(providerInfo?.isMetaMask).toBe(true)
|
|
})
|
|
})
|