mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-24 11:18:02 +00:00
8e16f7c129
* Jest, Enzyme test env setup * unit tests for telemetry state update logic * remove sinon, superfluous scripts * Remove console log
13 lines
340 B
JavaScript
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;
|