diff --git a/e2e/src/Discover.spec.js b/e2e/src/Discover.spec.js deleted file mode 100644 index 8e2e3e6bb2..0000000000 --- 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) -})