Files
pezkuwi-telemetry/packages/frontend/test/enzyme.js
T
YJ 8e16f7c129 Unit testing Connections.ts (#66)
* Jest, Enzyme test env setup

* unit tests for telemetry state update logic

* remove sinon, superfluous scripts

* Remove console log
2018-10-05 09:14:53 +02:00

13 lines
340 B
JavaScript

// Copyright 2017-2018 @polkadot authors & contributors
// This software may be modified and distributed under the terms
// of the ISC license. See the LICENSE file for details.
const Adapter = require('enzyme-adapter-react-16');
const Enzyme = require('enzyme');
Enzyme.configure({
adapter: new Adapter()
});
module.exports = Enzyme;