Skip to content

Instantly share code, notes, and snippets.

View epsilon11101's full-sized avatar

Epsilon epsilon11101

View GitHub Profile
@Klerith
Klerith / pasos-node-ts-jest.md
Created August 19, 2023 18:35
Note + TypeScript + Jest = Testing

Pasos para configurar Jest con TypeScript, en Node

Documentaci贸n oficial sobre Jest

  1. Instalaciones de desarrollo (super test es 煤til para probar Express)
npm install -D jest @types/jest ts-jest supertest
@Klerith
Klerith / pasos-node-typescript.md
Last active December 11, 2025 03:38
Configurar proyecto de Node con TypeScript

Pasos para usar Node con TypeScript con Nodemon

M谩s informaci贸n - Docs Oficiales

  1. Instalar TypeScript y tipos de Node, como dependencia de desarrollo
npm i -D typescript @types/node
  1. Inicializar el archivo de configuraci贸n de TypeScript ( Se puede configurar al gusto)
@AlexAlonsoMontero
AlexAlonsoMontero / vite-testing-config.md
Last active October 9, 2023 01:54 — 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
npm install --dev jest babel-jest @babel/preset-env @babel/preset-react