when I run tests, I am getting
SyntaxError : Missing semicolon.
I have checked the jest documentation and looks like babel config file is correctly configured.
module.exports = {
presets: ['@babel/preset-env', '@babel/preset-react', '@babel/preset-typescript'],
plugins: ['@babel/plugin-transform-runtime'],
};
What else should I check or do?