Created by: kusold
Fixes https://github.com/facebook/create-react-app/issues/4345
SCSS and SASS modules currently aren't getting transformed, instead they are being resolved by the fileTransform
. This PR instead sends them through the identity-obj-proxy
so that:
<div className={style.container>...</div>
becomes
<div className="container">...</div>
when using jest
.