https://github.com/pcmunoz/jest-rtl-cheatsheet
Jest, React Testing LIbrary, Cheatsheet
https://github.com/pcmunoz/jest-rtl-cheatsheet
cheatsheet jest rtl
Last synced: about 2 months ago
JSON representation
Jest, React Testing LIbrary, Cheatsheet
- Host: GitHub
- URL: https://github.com/pcmunoz/jest-rtl-cheatsheet
- Owner: pcmunoz
- Created: 2022-02-24T14:25:34.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-06-23T11:48:10.000Z (about 3 years ago)
- Last Synced: 2025-03-14T17:44:32.746Z (over 1 year ago)
- Topics: cheatsheet, jest, rtl
- Language: JavaScript
- Homepage: https://pcmunoz.github.io/jest-rtl-cheatsheet/
- Size: 1.34 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Module Federation With React Starter
Full article here:
```
app1
├─ dist
│ ├─ 303.js
│ ├─ 303.js.LICENSE.txt
│ ├─ 538.js
│ ├─ 538.js.LICENSE.txt
│ ├─ index.html
│ ├─ main.js
│ ├─ main.js.LICENSE.txt
│ ├─ remoteEntry.js
│ ├─ remoteEntry.js.LICENSE.txt
│ ├─ src_bootstrap_tsx.js
│ └─ src_components_CounterAppOne_tsx.js
├─ package-lock.json
├─ package.json
├─ public
│ └─ index.html
├─ README.md
├─ src
│ ├─ App.tsx
│ ├─ bootstrap.tsx
│ ├─ components
│ │ └─ CounterAppOne.tsx
│ └─ index.ts
├─ tsconfig.json
├─ webpack.config.js
├─ webpack.prod.js
└─ yarn.lock
```