mirror of https://github.com/facebook/jest.git
19 lines
574 B
JavaScript
19 lines
574 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
module.exports = {
|
|
resolveSnapshotPath: (testPath, snapshotExtension) =>
|
|
testPath.replace('__tests__', '__snapshots__') + snapshotExtension,
|
|
|
|
resolveTestPath: (snapshotFilePath, snapshotExtension) =>
|
|
snapshotFilePath
|
|
.replace('__snapshots__', '__tests__')
|
|
.slice(0, -snapshotExtension.length),
|
|
|
|
testPathForConsistencyCheck: 'foo/__tests__/bar.test.js',
|
|
};
|