Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

17 行
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)