Motomichi Works Blog

モトミチワークスブログです。その日学習したことについて書いている日記みたいなものです。

2020-06-01から1ヶ月間の記事一覧

jestのcustom reporterを作成してテスト実行結果をcsvファイルで出力する

参考にさせていただいたページ Configuring Jest · Jest Configuring Jest · Jest GitHub - mas0061/jest-allresult-csv-reporter: A Jest plugin. Output all test results to CSV. はじめに jestのテスト実行結果を出力するためのreporterは比較的簡単に自…

テスト対象でない子コンポーネントをstubで置き換える | Vuex + vue-test-utils その0006

参考にさせていただいたページ mount() | Vue Test Utils サンプルコード たとえばMyComponentの子コンポーネントHogeComponentを置き換えたい場合は、mountするときに以下のようにします。 wrapper = mount(MyComponent, { stubs: { HogeComponent: { templ…