[Solved] Work for meInstall below
npm install --save-dev @babel/core @babel/preset-env
after that create the "babel.config.js" file in the root and that content should be as below
module.exports = { presets: ['@babel/preset-env', '@babel/preset-react'], env: { test: { plugins: ["@babel/plugin-transform-runtime"] } }};