├── .gitignore ├── README.md ├── index.html ├── jest.config.js ├── package.json ├── site.scss ├── src ├── App.tsx ├── LoginForm.tsx ├── __tests__ │ └── LoginForm.test.tsx ├── globals.d.ts └── index.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .cache/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamranayub/pluralsight-sample-react-testing-typescript/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamranayub/pluralsight-sample-react-testing-typescript/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamranayub/pluralsight-sample-react-testing-typescript/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamranayub/pluralsight-sample-react-testing-typescript/HEAD/package.json -------------------------------------------------------------------------------- /site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamranayub/pluralsight-sample-react-testing-typescript/HEAD/site.scss -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamranayub/pluralsight-sample-react-testing-typescript/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamranayub/pluralsight-sample-react-testing-typescript/HEAD/src/LoginForm.tsx -------------------------------------------------------------------------------- /src/__tests__/LoginForm.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamranayub/pluralsight-sample-react-testing-typescript/HEAD/src/__tests__/LoginForm.test.tsx -------------------------------------------------------------------------------- /src/globals.d.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom/extend-expect' -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamranayub/pluralsight-sample-react-testing-typescript/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamranayub/pluralsight-sample-react-testing-typescript/HEAD/tsconfig.json --------------------------------------------------------------------------------