1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-08 22:15:02 +00:00
mon-entreprise/componentTestSetup.js
2020-04-24 11:27:48 +02:00

15 lines
464 B
JavaScript

import chai from 'chai'
import Enzyme from 'enzyme'
import Adapter from 'enzyme-adapter-react-16'
import sinonChai from 'sinon-chai'
chai.use(sinonChai)
Enzyme.configure({ adapter: new Adapter() })
// Setup Intl in "en" and "fr" for testing
// var areIntlLocalesSupported = require('intl-locales-supported')
// var localesMyAppSupports = ['en', 'fr']
global.Intl = require('intl')
require('intl/locale-data/jsonp/en.js')
require('intl/locale-data/jsonp/fr.js')