Jestでスナップショットのパスを変更する
ちょっと面倒だったのでメモ
サンプル
TypeScriptをdistにコンパイルして、.jsファイルでテストを実行する場合でサンプルを書きますが、
別のパターンでも簡単に応用できると思います。
ファイル構造は以下の想定
src/
├─ index.ts
├─ index.test.ts // テスト
└─ index.test.snap <= ここにスナップショットを出力したい
dist/
└─ src/
├─ index.js
└─ index.test.js
実行コマンドの想定
jest dist/src/index.test.js
実装
jest.config.js
module.exports = {
...
snapshotResolver: './src/snapshotResolver.js',
};
src/snapshotResolver.js
module.exports = {
/**
* テストファイルのパス => スナップショットのファイルパスに変換
* dist/src/index.test.js
* => src/index.test.snap
*/
resolveSnapshotPath: ( testPath, snapshotExtension ) =>
testPath.replace( 'dist/', '' ).replace( '.js', '' ) + snapshotExtension,
/**
* スナップショットのファイルパス => テストのファイルパスの変換
* src/index.test.snap
* => dist/src/test/create.test.js
*/
resolveTestPath: ( snapshotFilePath, snapshotExtension ) =>
snapshotFilePath
.replace( 'src/', 'dist/src/' )
.slice( 0, -snapshotExtension.length ) + '.js',
/**
* 整合性の確認のためのサンプルが必須のようです
*/
testPathForConsistencyCheck: 'dist/src/example.test.js',
};
以上!
Author And Source
この問題について(Jestでスナップショットのパスを変更する), 我々は、より多くの情報をここで見つけました https://qiita.com/hedrall/items/61e1809b8acb297193d8著者帰属:元の著者の情報は、元の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 .