├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── APIComponent.test.tsx ├── APIComponent.tsx ├── App.css ├── App.test.tsx ├── App.tsx ├── ButtonWrapper.test.tsx ├── ButtonWrapper.tsx ├── Counter.test.tsx ├── Counter.tsx ├── Person.test.tsx ├── Person.tsx ├── ReduxCounter.test.tsx ├── ReduxCounter.tsx ├── SideBar.test.tsx ├── SideBar.tsx ├── ZustandCounter.test.tsx ├── ZustandCounter.tsx ├── index.css ├── index.tsx ├── logo.svg ├── react-app-env.d.ts ├── reportWebVitals.ts ├── setupTests.ts ├── store.ts ├── useAPI.test.ts ├── useAPI.ts ├── useCounter.test.ts ├── useCounter.ts └── zustandStore.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/APIComponent.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/APIComponent.test.tsx -------------------------------------------------------------------------------- /src/APIComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/APIComponent.tsx -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/ButtonWrapper.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/ButtonWrapper.test.tsx -------------------------------------------------------------------------------- /src/ButtonWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/ButtonWrapper.tsx -------------------------------------------------------------------------------- /src/Counter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/Counter.test.tsx -------------------------------------------------------------------------------- /src/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/Counter.tsx -------------------------------------------------------------------------------- /src/Person.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/Person.test.tsx -------------------------------------------------------------------------------- /src/Person.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/Person.tsx -------------------------------------------------------------------------------- /src/ReduxCounter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/ReduxCounter.test.tsx -------------------------------------------------------------------------------- /src/ReduxCounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/ReduxCounter.tsx -------------------------------------------------------------------------------- /src/SideBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/SideBar.test.tsx -------------------------------------------------------------------------------- /src/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/SideBar.tsx -------------------------------------------------------------------------------- /src/ZustandCounter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/ZustandCounter.test.tsx -------------------------------------------------------------------------------- /src/ZustandCounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/ZustandCounter.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/store.ts -------------------------------------------------------------------------------- /src/useAPI.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/useAPI.test.ts -------------------------------------------------------------------------------- /src/useAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/useAPI.ts -------------------------------------------------------------------------------- /src/useCounter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/useCounter.test.ts -------------------------------------------------------------------------------- /src/useCounter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/useCounter.ts -------------------------------------------------------------------------------- /src/zustandStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/src/zustandStore.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jherr/ts-react-testing/HEAD/yarn.lock --------------------------------------------------------------------------------