Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Integrar pruebas Unitarias con Jest en React

Tiempo de lectura: 2 minutos

Hoy vamos a aprender cómo podemos integar prubas con Jest que nos permitan testear los componentes React creados.

Lo primero que tenemos que hacer es instalar Jest:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm install --save-dev jest
npm install --save-dev jest
npm install --save-dev jest

Instalamos testing-library/jest-dom:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm install --save-dev @testing-library/jest-dom
npm install --save-dev @testing-library/jest-dom
npm install --save-dev @testing-library/jest-dom

Instalamos ts-jest

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm install --save-dev ts-jest
npm install --save-dev ts-jest
npm install --save-dev ts-jest

Instalamos:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm install --save-dev babel-jest
npm install --save-dev babel-jest
 npm install --save-dev babel-jest

Instalaremos React testing library:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm install --save-dev @testing-library/react
npm install --save-dev @testing-library/react
npm install --save-dev @testing-library/react

O si usamos TypeScript:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm install --save-dev @testing-library/react @types/react-dom @types/react
npm install --save-dev @testing-library/react @types/react-dom @types/react
npm install --save-dev @testing-library/react @types/react-dom @types/react

Además para typescript:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm i --save-dev @types/jest
npm i --save-dev @types/jest
npm i --save-dev @types/jest

Ahora vamos a crear la estructura de carpetas para nuestras pruebas con Jest:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
tests/
│ ├── unit/
│ │ ├── components/
│ │ │ ├── Button.test.tsx
│ │ │ └── ...
│ │ └── utils/
│ │ ├── api.test.ts
│ │ └── ...
│ ├── integration/
│ │ ├── auth.test.tsx
coverage/
tests/ │ ├── unit/ │ │ ├── components/ │ │ │ ├── Button.test.tsx │ │ │ └── ... │ │ └── utils/ │ │ ├── api.test.ts │ │ └── ... │ ├── integration/ │ │ ├── auth.test.tsx coverage/
tests/
│   ├── unit/
│   │   ├── components/
│   │   │   ├── Button.test.tsx
│   │   │   └── ...
│   │   └── utils/
│   │       ├── api.test.ts
│   │       └── ...
│   ├── integration/
│   │   ├── auth.test.tsx
coverage/

*Crea solo las carpetas no hace falta añadir los scripts. En los siguientes pasos añadiremos los scripts.

Y vamos a inicializar jest:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm init jest@latest
npm init jest@latest
npm init jest@latest

Primero pregunta si queremos incluir el compando test dentro de packcage.json. Ponemos Y

Después pregunta si tenemos TypeScript, si lo tenemos ponemos Y y si no N

El enviroment para testear usamos node.

NOs preguntará si queremos coverage reports, en mi caso si que quiero que me genere el archivo coverage. Y selecciono v8.

Si quiero limpiar contextos, resultados… después de realizar cada test marco Y.

Finalmente nos crea la configuración en jest.config.ts

Después tendremos que instalar:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm install --save-dev ts-node
npm install --save-dev ts-node
npm install --save-dev ts-node

Y fuera de la carpeta tests pondremos el archivo jest.config.cjs

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
module.exports = {
// Indica a Jest que busque archivos de prueba en el directorio 'tests'
roots: ['<rootDir>/tests'],
// Indica a Jest que busque archivos con la extensión '.ts' o '.tsx'
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
// Configura el transformador para archivos TypeScript utilizando 'ts-jest'
transform: {
'^.+\\.(ts|tsx)$': 'ts-jest',
},
// Configura las rutas para los archivos de prueba y las pruebas de cobertura
// Puedes ajustar estas rutas según tu estructura de carpetas
testMatch: ['<rootDir>/tests/**/*.test.(ts|tsx|js|jsx)'],
coverageDirectory: '<rootDir>/coverage',
};
module.exports = { // Indica a Jest que busque archivos de prueba en el directorio 'tests' roots: ['<rootDir>/tests'], // Indica a Jest que busque archivos con la extensión '.ts' o '.tsx' moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], // Configura el transformador para archivos TypeScript utilizando 'ts-jest' transform: { '^.+\\.(ts|tsx)$': 'ts-jest', }, // Configura las rutas para los archivos de prueba y las pruebas de cobertura // Puedes ajustar estas rutas según tu estructura de carpetas testMatch: ['<rootDir>/tests/**/*.test.(ts|tsx|js|jsx)'], coverageDirectory: '<rootDir>/coverage', };
module.exports = {
  // Indica a Jest que busque archivos de prueba en el directorio 'tests'
  roots: ['<rootDir>/tests'],

  // Indica a Jest que busque archivos con la extensión '.ts' o '.tsx'
  moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],

  // Configura el transformador para archivos TypeScript utilizando 'ts-jest'
  transform: {
    '^.+\\.(ts|tsx)$': 'ts-jest',
  },

  // Configura las rutas para los archivos de prueba y las pruebas de cobertura
  // Puedes ajustar estas rutas según tu estructura de carpetas
  testMatch: ['<rootDir>/tests/**/*.test.(ts|tsx|js|jsx)'],
  coverageDirectory: '<rootDir>/coverage',
};

Con esta configuración tendremos preparado jest para funcionar.

Si nos da error de module.exports por .eslint, añadimos esto en el archivo .eslintrc.cjs

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
env: { browser: true, es2020: true, node: true, commonjs: true, jest:true},
env: { browser: true, es2020: true, node: true, commonjs: true, jest:true},
  env: { browser: true, es2020: true, node: true, commonjs: true, jest:true},

Si usamos TypeScript dentro del archivo tsconfig.json añadimos en compilerOptions:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
"types": [
"jest"
],
"types": [ "jest" ],
"types": [
      "jest"
    ],

Ahora vamos a implementar una primera prueba Unitaria de un componente botón:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
// Button.js
import React from 'react';
const Button = ({ onClick, children }) => {
return <button onClick={onClick}>{children}</button>;
};
export default Button;
// Button.js import React from 'react'; const Button = ({ onClick, children }) => { return <button onClick={onClick}>{children}</button>; }; export default Button;
// Button.js
import React from 'react';

const Button = ({ onClick, children }) => {
  return <button onClick={onClick}>{children}</button>;
};

export default Button;

Para testear este elemento, crearemos dentro de tests/unit/components el archivo Button.test.js

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
// Button.test.js
import '@testing-library/jest-dom';
import React from 'react';
import { render, fireEvent } from '@testing-library/react';
import Button from './Button';
test('renders button with correct text', () => {
const { getByText } = render(<Button>Click me</Button>);
const buttonElement = getByText('Click me');
expect(buttonElement).toBeInTheDocument();
});
test('calls onClick prop when button is clicked', () => {
const onClickMock = jest.fn();
const { getByText } = render(<Button onClick={onClickMock}>Click me</Button>);
const buttonElement = getByText('Click me');
fireEvent.click(buttonElement);
expect(onClickMock).toHaveBeenCalledTimes(1);
});
// Button.test.js import '@testing-library/jest-dom'; import React from 'react'; import { render, fireEvent } from '@testing-library/react'; import Button from './Button'; test('renders button with correct text', () => { const { getByText } = render(<Button>Click me</Button>); const buttonElement = getByText('Click me'); expect(buttonElement).toBeInTheDocument(); }); test('calls onClick prop when button is clicked', () => { const onClickMock = jest.fn(); const { getByText } = render(<Button onClick={onClickMock}>Click me</Button>); const buttonElement = getByText('Click me'); fireEvent.click(buttonElement); expect(onClickMock).toHaveBeenCalledTimes(1); });
// Button.test.js
import '@testing-library/jest-dom';
import React from 'react';
import { render, fireEvent } from '@testing-library/react';
import Button from './Button';

test('renders button with correct text', () => {
  const { getByText } = render(<Button>Click me</Button>);
  const buttonElement = getByText('Click me');
  expect(buttonElement).toBeInTheDocument();
});

test('calls onClick prop when button is clicked', () => {
  const onClickMock = jest.fn();
  const { getByText } = render(<Button onClick={onClickMock}>Click me</Button>);
  const buttonElement = getByText('Click me');
  fireEvent.click(buttonElement);
  expect(onClickMock).toHaveBeenCalledTimes(1);
});
  • Es importante añadir import ‘@testing-library/jest-dom’; para que nos reconozca bien las funciones utilizadas.

Si queremos anidar pruebas distintas podemos utilizar la función describe:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
describe('Componente A', () => {
test('Prueba 1', () => {
// ...
});
test('Prueba 2', () => {
// ...
});
});
describe('Componente A', () => { test('Prueba 1', () => { // ... }); test('Prueba 2', () => { // ... }); });
describe('Componente A', () => {
  test('Prueba 1', () => {
    // ...
  });

  test('Prueba 2', () => {
    // ...
  });
});

Y ahora podemos ejecutar la prueba:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
npm run test
npm run test
npm run test
0

Deja un comentario