diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 9ccbdb6c..3f2dcb1e 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -131,6 +131,7 @@ jobs: - name: Build & Deploy Solana Predicates run: pnpm fuels build && pnpm fuels deploy + if: false # @TODO: Phantom CRX is currently broken, so we're skipping this step for now working-directory: packages/solana-connector - name: Install Playwright Browsers diff --git a/e2e-tests/runner/examples/connectors/SolanaConnector/SolanaConnector.test.ts b/e2e-tests/runner/examples/connectors/SolanaConnector/SolanaConnector.test.ts index 8269cb63..64d91f95 100644 --- a/e2e-tests/runner/examples/connectors/SolanaConnector/SolanaConnector.test.ts +++ b/e2e-tests/runner/examples/connectors/SolanaConnector/SolanaConnector.test.ts @@ -14,7 +14,8 @@ import { fundWallet } from '../setup'; import phantomExtended from './phantom/phantom'; import { test } from './setup'; -test.describe('SolanaConnector', () => { +// @TODO: Phantom CRX is currently broken, so we're skipping this step for now +test.skip('SolanaConnector', () => { test.slow(); const connect: ConnectFunction = async (page: Page) => { diff --git a/e2e-tests/runner/playwright.config.ts b/e2e-tests/runner/playwright.config.ts index 6db61c30..c83a10c9 100644 --- a/e2e-tests/runner/playwright.config.ts +++ b/e2e-tests/runner/playwright.config.ts @@ -3,7 +3,6 @@ import { defineConfig, devices, } from '@playwright/test'; -// import { synpressFixtures } from '@synthetixio/synpress'; import dotenv from 'dotenv'; dotenv.config();