From 9027882fb401df2a9df6a89facb2bdb94b8b731b Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 24 Jan 2023 09:06:27 -0600 Subject: Account switcher (#85) * Update the account-create and signin views to use the design system. Also: - Add borderDark to the theme - Start to an account selector in the signin flow * Dark mode fixes in signin ui * Track multiple active accounts and provide account-switching UI * Add test tooling for an in-memory pds * Add complete integration tests for login and the account switcher --- jest/jestSetup.js | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'jest/jestSetup.js') diff --git a/jest/jestSetup.js b/jest/jestSetup.js index b1f110a53..8f95062a9 100644 --- a/jest/jestSetup.js +++ b/jest/jestSetup.js @@ -25,19 +25,6 @@ jest.mock('react-native-safe-area-context', () => { } }) -jest.mock('@gorhom/bottom-sheet', () => { - const react = require('react-native') - return { - __esModule: true, - default: react.View, - namedExport: { - ...require('react-native-reanimated/mock'), - ...jest.requireActual('@gorhom/bottom-sheet'), - BottomSheetFlatList: react.FlatList, - }, - } -}) - jest.mock('rn-fetch-blob', () => ({ config: jest.fn().mockReturnThis(), cancel: jest.fn(), -- cgit 1.4.1