(filePath: string)
| 18 | import {BULLET, DOCUMENTATION_NOTE} from './utils'; |
| 19 | |
| 20 | const isFile = (filePath: string) => |
| 21 | fs.existsSync(filePath) && !fs.lstatSync(filePath).isDirectory(); |
| 22 | |
| 23 | const getConfigFilename = (ext: string) => JEST_CONFIG_BASE_NAME + ext; |
| 24 |
no outgoing calls
no test coverage detected