From 8a93247a117bef8001cf0eec21ad2a56829a6fc5 Mon Sep 17 00:00:00 2001 From: Alex Bakoushin Date: Wed, 2 Oct 2024 23:01:00 +0200 Subject: [PATCH] keep just one test --- e2e/src/Discover.spec.js | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 e2e/src/Discover.spec.js diff --git a/e2e/src/Discover.spec.js b/e2e/src/Discover.spec.js deleted file mode 100644 index 8e2e3e6bb2d..00000000000 --- a/e2e/src/Discover.spec.js +++ /dev/null @@ -1,23 +0,0 @@ -import { quickOnboarding, waitForElementByIdAndTap, scrollIntoView } from './utils/utils' -import { launchApp } from './utils/retries' -import DappListDisplay from './usecases/DappListDisplay' - -describe('Discover tab', () => { - beforeAll(async () => { - await quickOnboarding() - // Relaunch app to ensure dapp list loads - // Needed for e2e tests otherwise dapp list is not loaded on first pass - await launchApp({ - newInstance: true, - permissions: { notifications: 'YES', contacts: 'YES', camera: 'YES' }, - }) - await waitForElementByIdAndTap('Tab/Discover') - - await scrollIntoView('Explore All', 'DiscoverScrollView') - await element(by.text('Explore All')).tap() - - await waitFor(element(by.id(`DappsScreen/DappsList`))) - }) - - describe('Dapp List Display', DappListDisplay) -})