Skip to content

Instantly share code, notes, and snippets.

@Alirio-Mieres
Forked from Klerith/vite-testing-config.md
Last active December 16, 2023 01:49
Show Gist options
  • Save Alirio-Mieres/12500bca4fd37665403efd2ffd85b486 to your computer and use it in GitHub Desktop.
Save Alirio-Mieres/12500bca4fd37665403efd2ffd85b486 to your computer and use it in GitHub Desktop.
Vite + Jest + React Testing Library - Configuraciones a seguir

Instalación y configuracion de Jest + React Testing Library en Windows

En proyectos de React + Vite

  1. Instalaciones:
npm i --save-dev jest babel-jest @babel/preset-env @babel/preset-react
npm i --save-dev @testing-library/react @types/jest jest-environment-jsdom
  1. Opcional: Si usamos Fetch API en el proyecto:
npm i --save-dev whatwg-fetch
  1. Actualizar los scripts del package.json
"scripts: {
  ...
  "test": "jest --watchAll"
  1. Crear la configuración de babel babel.config.cjs
module.exports = {
    presets: [
        [ '@babel/preset-env', { targets: { esmodules: true } } ],
        [ '@babel/preset-react', { runtime: 'automatic' } ],
    ],
};
  1. Opcional, pero eventualmente necesario, crear Jest config y setup:

jest.config.cjs

module.exports = {
    testEnvironment: 'jest-environment-jsdom',
    setupFiles: ['./jest.setup.js']
}

jest.setup.js

// En caso de necesitar la implementación del FetchAPI
import 'whatwg-fetch'; // <-- yarn add whatwg-fetch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment