選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

jest.setup.ts 118B

123456
  1. import '@testing-library/jest-dom'
  2. import { cleanup } from '@testing-library/react'
  3. afterEach(() => {
  4. cleanup()
  5. })