Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
357 B

  1. import * as Enzyme from 'enzyme'
  2. import * as fc from 'fast-check'
  3. import Adapter from 'enzyme-adapter-react-16'
  4. import * as extensions from './utilities/jest/extensions'
  5. import * as Axe from 'jest-axe'
  6. Enzyme.configure({
  7. adapter: new Adapter()
  8. })
  9. fc.configureGlobal({
  10. verbose: true,
  11. })
  12. expect.extend(Axe.toHaveNoViolations)
  13. expect.extend(extensions)