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
12 lines
406 B
TypeScript
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() })
|