enzyme.js 352 B

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