// add a jest.config.js to the project with this content
const config = {
verbose: true,
"moduleNameMapper": {
".(scss|less)$": "<rootDir>/config/CSSStub.js"
}
}
module.exports = config;
// Or async function
module.exports = async() => {
return {
verbose: true,
};
};