Skip to content

Instantly share code, notes, and snippets.

View tonykevin's full-sized avatar
馃崓
Focusing

Tony kevin tonykevin

馃崓
Focusing
View GitHub Profile
@Klerith
Klerith / vite-testing-config.md
Last active June 26, 2025 22:26
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:
@Klerith
Klerith / vite-testing-config.md
Last active June 12, 2025 16:34
Vite + Testing + Jest - Completo

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:
@Klerith
Klerith / docker-compose.yml
Last active June 26, 2025 21:00
PostgreSQL + PgAdmin
version: '3'
services:
myDB:
image: postgres:15.3
container_name: my-database
restart: always
ports:
- 5432:5432
environment: