Reactjs – why we can use jest without installing it and no need to use import?
I use create-react-app to create an react project, so I have // package.json "dependencies": { "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^13.5.0", ... }, first thing I don't understand is, why those @testing-library packages are in dependencies not devDependencies? why we…