description:'When using `jest.mock`, your tests (just like the code being tested) should import from `./x`, not `./__mocks__/x`. Not following this rule can lead to confusion, because you will have multiple instances of the mocked module',
recommended:'error'
},
messages:{
noManualImport:`Mocks should not be manually imported from a ${mocksDirName} directory. Instead use jest.mock and import from the original module path.`