JestでdataProviderを使う
936 ワード
やりたいこと
Jestでテストをする際に、テスト内容は同じで与えられるデータだけが異なる場合に、重複した処理を書かずに済ませたい。
PHPUnitでテストを書いている時に使ったことのある、data providerという仕組みがJestにもないか調べてみた。
実装
以下のように、describe.each()
を使えばdata providerと同じようなことができる。
interface Datum {
hoge: string,
}
const data: Datum[] = [
{
hoge: 'hoge'
},
.
.
.
]
describe.each(data)('hogeのユニットテスト', (datum: Datum) => {
const { hoge } = datum
it(`${hoge}の場合。`, () => {
// テストの実装
})
})
参考記事
Author And Source
この問題について(JestでdataProviderを使う), 我々は、より多くの情報をここで見つけました https://qiita.com/tomokon/items/c3f5b08f6eb3401d16fb著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .