This commit is contained in:
Nebel 2022-03-01 17:12:25 +09:00
parent 8dcb9ec7a4
commit 14836c4ac7

View file

@ -6,11 +6,8 @@ Jestの機能について説明します。
Jestは、デフォルトで下記のファイルをテストファイルとして検出します。
- `.test.js` ファイル
- `.test.ts` ファイル
- `.spec.js` ファイル
- `.spec.ts` ファイル
- `__tests__` ディレクトリ以下の `.js``.ts``.jsx``.tsx` ファイル
- 名前の末尾に `.test` あるいは `.spec` の含まれる `.js``.jsx``.ts``.tsx` ファイル
- `__tests__` ディレクトリ以下の `.js``.jsx``.ts``.tsx` ファイル
## テストの自動監視