From 4599740f70208fce6884d7d4fbd15489273c2680 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9lcio=20Franco?= Date: Mon, 6 Jan 2025 14:21:35 +0700 Subject: [PATCH] test: disable solana tests for now --- .github/workflows/pr-tests.yml | 1 + .../connectors/SolanaConnector/SolanaConnector.test.ts | 3 ++- e2e-tests/runner/playwright.config.ts | 1 - 3 files changed, 3 insertions(+), 2 deletions(-) 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();