Files
brave-core/components/test/testSetup.ts
T
Pete Miller 395d422b66 Remove shields UI from brave extension
The display of it has been disabled by default for some time, but the background script has still been running in case the flag was re-enabled
2022-06-27 20:30:10 -07:00

12 lines
406 B
TypeScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
import * as Enzyme from 'enzyme'
import * as EnzymeAdapter from 'enzyme-adapter-react-16'
import './testPolyfills'
// Setup enzyme's react adapter
Enzyme.configure({ adapter: new EnzymeAdapter() })