Skip to content

Instantly share code, notes, and snippets.

@heimer79
heimer79 / vite-testing-config.md
Last active July 7, 2024 04:00 — forked from Klerith/vite-testing-config.md
Vite + Jest + React Testing Library - Configuraciones a seguir

Instalación y configuracion de Jest + React Testing Library

En proyectos de React + Vite

  1. Instalaciones:
yarn add --dev jest babel-jest @babel/preset-env @babel/preset-react 
yarn add --dev @testing-library/react @types/jest jest-environment-jsdom
  1. Opcional: Si usamos Fetch API en el proyecto:
@heimer79
heimer79 / instalaciones-javascript-curso.md
Created January 12, 2023 12:33 — forked from Klerith/instalaciones-javascript-curso.md
Instalaciones recomendadas - Curso de JavaScript
@heimer79
heimer79 / react-index.html
Created February 15, 2021 03:29 — forked from Klerith/react-index.html
Introducción a React
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- Cargat React -->
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
@heimer79
heimer79 / Instalaciones-React.md
Created February 8, 2021 04:08 — forked from Klerith/Instalaciones-React.md
Instalaciones recomendadas para mi curso de React de cero a experto