mirror of https://github.com/facebook/jest.git
21 lines
503 B
JavaScript
21 lines
503 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.
|
|
*
|
|
* @noflow
|
|
*/
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
getHasteName(filePath) {
|
|
const name = path.parse(filePath).name;
|
|
const isMock = filePath.includes('__mocks__');
|
|
|
|
// Mocks are automatically parsed by Jest already.
|
|
return name.startsWith('Test') && !isMock ? name : null;
|
|
},
|
|
};
|