forked from Material-MADS/mads-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest-setup.js
More file actions
24 lines (18 loc) · 1.3 KB
/
jest-setup.js
File metadata and controls
24 lines (18 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* eslint-disable import/no-extraneous-dependencies */
/*=================================================================================================
// Project: CADS/MADS - An Integrated Web-based Visual Platform for Materials Informatics
// Hokkaido University (2018)
// Last Update: Q3 2023
// ________________________________________________________________________________________________
// Authors: Mikael Nicander Kuwahara (Lead Developer) [2021-]
// Jun Fujima (Former Lead Developer) [2018-2021]
// ________________________________________________________________________________________________
=================================================================================================*/
//-------------------------------------------------------------------------------------------------
import enzyme from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';
//-------------------------------------------------------------------------------------------------
//-------------------------------------------------------------------------------------------------
enzyme.configure({ adapter: new Adapter() });
window.MessageChannel = require('worker_threads').MessageChannel;
//-------------------------------------------------------------------------------------------------