enzyme.js 403 B

12345678910111213
  1. /* eslint-disable @typescript-eslint/no-var-requires */
  2. // Copyright 2017-2019 @polkadot authors & contributors
  3. // This software may be modified and distributed under the terms
  4. // of the Apache-2.0 license. See the LICENSE file for details.
  5. const Adapter = require('enzyme-adapter-react-16');
  6. const Enzyme = require('enzyme');
  7. Enzyme.configure({
  8. adapter: new Adapter()
  9. });
  10. module.exports = Enzyme;