├── .all-contributorsrc ├── .env ├── .gitignore ├── .gitlab-ci.yml ├── .husky └── .gitignore ├── .node-version ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── .yarnrc ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── amplify ├── .config │ └── project-config.json └── backend │ ├── auth │ └── cypressrealworldapp3a466349 │ │ ├── cypressrealworldapp3a466349-cloudformation-template.yml │ │ └── parameters.json │ └── backend-config.json ├── backend ├── app.ts ├── auth.ts ├── bankaccount-routes.ts ├── banktransfer-routes.ts ├── comment-routes.ts ├── contact-routes.ts ├── database.ts ├── graphql │ ├── resolvers │ │ ├── Mutation.ts │ │ ├── Query.ts │ │ └── index.ts │ └── schema.graphql ├── helpers.ts ├── like-routes.ts ├── notification-routes.ts ├── testdata-routes.ts ├── transaction-routes.ts ├── types.ts ├── user-routes.ts └── validators.ts ├── bitbucket-pipelines.yml ├── codecov.yml ├── cypress.json ├── data ├── database-seed.json ├── database.json └── empty-seed.json ├── package.json ├── public ├── favicon.ico ├── img │ └── rwa-readme-screenshot.png ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── renovate.json ├── sandbox.config.json ├── scripts ├── generateSeedData.ts ├── mock-aws-exports-es5.js ├── mock-aws-exports.js ├── seedDataUtils.ts ├── testServer.ts └── tsconfig.json ├── src ├── components │ ├── AlertBar.tsx │ ├── BankAccountForm.tsx │ ├── BankAccountItem.tsx │ ├── BankAccountList.tsx │ ├── CommentForm.tsx │ ├── CommentList.tsx │ ├── CommentListItem.tsx │ ├── EmptyList.tsx │ ├── Footer.tsx │ ├── MainLayout.tsx │ ├── NavBar.tsx │ ├── NavDrawer.tsx │ ├── NotificationList.tsx │ ├── NotificationListItem.tsx │ ├── PrivateRoute.tsx │ ├── SignInForm.tsx │ ├── SignUpForm.tsx │ ├── SkeletonList.tsx │ ├── SvgCypressLogo.tsx │ ├── SvgRwaIconLogo.tsx │ ├── SvgRwaLogo.tsx │ ├── SvgUndrawNavigatorA479.tsx │ ├── SvgUndrawPersonalFinanceTqcd.tsx │ ├── SvgUndrawPersonalSettingsKihd.tsx │ ├── SvgUndrawReminders697P.tsx │ ├── SvgUndrawTransferMoneyRywa.tsx │ ├── TransactionAmount.tsx │ ├── TransactionContactsList.tsx │ ├── TransactionCreateStepOne.tsx │ ├── TransactionCreateStepThree.tsx │ ├── TransactionCreateStepTwo.tsx │ ├── TransactionDateRangeFilter.tsx │ ├── TransactionDetail.tsx │ ├── TransactionInfiniteList.tsx │ ├── TransactionItem.tsx │ ├── TransactionList.tsx │ ├── TransactionListAmountRangeFilter.tsx │ ├── TransactionListFilters.tsx │ ├── TransactionNavTabs.tsx │ ├── TransactionPersonalList.tsx │ ├── TransactionPublicList.tsx │ ├── TransactionTitle.tsx │ ├── UserListItem.tsx │ ├── UserListSearchForm.tsx │ ├── UserSettingsForm.tsx │ └── UsersList.tsx ├── containers │ ├── App.tsx │ ├── AppAuth0.tsx │ ├── AppCognito.tsx │ ├── AppGoogle.tsx │ ├── AppOkta.tsx │ ├── BankAccountsContainer.tsx │ ├── NotificationsContainer.tsx │ ├── PrivateRoutesContainer.tsx │ ├── TransactionCreateContainer.tsx │ ├── TransactionDetailContainer.tsx │ ├── TransactionsContainer.tsx │ ├── UserOnboardingContainer.tsx │ └── UserSettingsContainer.tsx ├── index.tsx ├── machines │ ├── authMachine.ts │ ├── bankAccountsMachine.ts │ ├── contactsTransactionsMachine.ts │ ├── createTransactionMachine.ts │ ├── dataMachine.ts │ ├── drawerMachine.ts │ ├── notificationsMachine.ts │ ├── personalTransactionsMachine.ts │ ├── publicTransactionsMachine.ts │ ├── snackbarMachine.ts │ ├── transactionDetailMachine.ts │ ├── transactionFiltersMachine.ts │ ├── userOnboardingMachine.ts │ └── usersMachine.ts ├── models │ ├── bankaccount.ts │ ├── banktransfer.ts │ ├── comment.ts │ ├── contact.ts │ ├── db-schema.ts │ ├── index.ts │ ├── like.ts │ ├── notification.ts │ ├── transaction.ts │ └── user.ts ├── react-app-env.d.ts ├── setupProxy.js ├── setupTests.ts ├── svgs │ ├── built-by-cypress.svg │ ├── cypress-logo.svg │ ├── rwa-icon-logo.svg │ ├── rwa-logo.svg │ ├── undraw_navigator_a479.svg │ ├── undraw_personal_finance_tqcd.svg │ ├── undraw_personal_settings_kihd.svg │ ├── undraw_reminders_697p.svg │ └── undraw_transfer_money_rywa.svg └── utils │ ├── asyncUtils.ts │ ├── historyUtils.ts │ ├── portUtils.ts │ └── transactionUtils.ts ├── tsconfig.json ├── tsconfig.tsnode.json └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 14.17.5 -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14.17.5 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/.yarnrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/README.md -------------------------------------------------------------------------------- /amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/amplify/.config/project-config.json -------------------------------------------------------------------------------- /amplify/backend/auth/cypressrealworldapp3a466349/cypressrealworldapp3a466349-cloudformation-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/amplify/backend/auth/cypressrealworldapp3a466349/cypressrealworldapp3a466349-cloudformation-template.yml -------------------------------------------------------------------------------- /amplify/backend/auth/cypressrealworldapp3a466349/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/amplify/backend/auth/cypressrealworldapp3a466349/parameters.json -------------------------------------------------------------------------------- /amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /backend/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/app.ts -------------------------------------------------------------------------------- /backend/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/auth.ts -------------------------------------------------------------------------------- /backend/bankaccount-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/bankaccount-routes.ts -------------------------------------------------------------------------------- /backend/banktransfer-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/banktransfer-routes.ts -------------------------------------------------------------------------------- /backend/comment-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/comment-routes.ts -------------------------------------------------------------------------------- /backend/contact-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/contact-routes.ts -------------------------------------------------------------------------------- /backend/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/database.ts -------------------------------------------------------------------------------- /backend/graphql/resolvers/Mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/graphql/resolvers/Mutation.ts -------------------------------------------------------------------------------- /backend/graphql/resolvers/Query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/graphql/resolvers/Query.ts -------------------------------------------------------------------------------- /backend/graphql/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/graphql/resolvers/index.ts -------------------------------------------------------------------------------- /backend/graphql/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/graphql/schema.graphql -------------------------------------------------------------------------------- /backend/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/helpers.ts -------------------------------------------------------------------------------- /backend/like-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/like-routes.ts -------------------------------------------------------------------------------- /backend/notification-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/notification-routes.ts -------------------------------------------------------------------------------- /backend/testdata-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/testdata-routes.ts -------------------------------------------------------------------------------- /backend/transaction-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/transaction-routes.ts -------------------------------------------------------------------------------- /backend/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/types.ts -------------------------------------------------------------------------------- /backend/user-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/user-routes.ts -------------------------------------------------------------------------------- /backend/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/backend/validators.ts -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/codecov.yml -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/cypress.json -------------------------------------------------------------------------------- /data/database-seed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/data/database-seed.json -------------------------------------------------------------------------------- /data/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/data/database.json -------------------------------------------------------------------------------- /data/empty-seed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/data/empty-seed.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/rwa-readme-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/public/img/rwa-readme-screenshot.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/public/robots.txt -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/renovate.json -------------------------------------------------------------------------------- /sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/sandbox.config.json -------------------------------------------------------------------------------- /scripts/generateSeedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/scripts/generateSeedData.ts -------------------------------------------------------------------------------- /scripts/mock-aws-exports-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/scripts/mock-aws-exports-es5.js -------------------------------------------------------------------------------- /scripts/mock-aws-exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/scripts/mock-aws-exports.js -------------------------------------------------------------------------------- /scripts/seedDataUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/scripts/seedDataUtils.ts -------------------------------------------------------------------------------- /scripts/testServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/scripts/testServer.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /src/components/AlertBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/AlertBar.tsx -------------------------------------------------------------------------------- /src/components/BankAccountForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/BankAccountForm.tsx -------------------------------------------------------------------------------- /src/components/BankAccountItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/BankAccountItem.tsx -------------------------------------------------------------------------------- /src/components/BankAccountList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/BankAccountList.tsx -------------------------------------------------------------------------------- /src/components/CommentForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/CommentForm.tsx -------------------------------------------------------------------------------- /src/components/CommentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/CommentList.tsx -------------------------------------------------------------------------------- /src/components/CommentListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/CommentListItem.tsx -------------------------------------------------------------------------------- /src/components/EmptyList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/EmptyList.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/MainLayout.tsx -------------------------------------------------------------------------------- /src/components/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/NavBar.tsx -------------------------------------------------------------------------------- /src/components/NavDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/NavDrawer.tsx -------------------------------------------------------------------------------- /src/components/NotificationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/NotificationList.tsx -------------------------------------------------------------------------------- /src/components/NotificationListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/NotificationListItem.tsx -------------------------------------------------------------------------------- /src/components/PrivateRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/PrivateRoute.tsx -------------------------------------------------------------------------------- /src/components/SignInForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/SignInForm.tsx -------------------------------------------------------------------------------- /src/components/SignUpForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/SignUpForm.tsx -------------------------------------------------------------------------------- /src/components/SkeletonList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/SkeletonList.tsx -------------------------------------------------------------------------------- /src/components/SvgCypressLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/SvgCypressLogo.tsx -------------------------------------------------------------------------------- /src/components/SvgRwaIconLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/SvgRwaIconLogo.tsx -------------------------------------------------------------------------------- /src/components/SvgRwaLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/SvgRwaLogo.tsx -------------------------------------------------------------------------------- /src/components/SvgUndrawNavigatorA479.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/SvgUndrawNavigatorA479.tsx -------------------------------------------------------------------------------- /src/components/SvgUndrawPersonalFinanceTqcd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/SvgUndrawPersonalFinanceTqcd.tsx -------------------------------------------------------------------------------- /src/components/SvgUndrawPersonalSettingsKihd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/SvgUndrawPersonalSettingsKihd.tsx -------------------------------------------------------------------------------- /src/components/SvgUndrawReminders697P.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/SvgUndrawReminders697P.tsx -------------------------------------------------------------------------------- /src/components/SvgUndrawTransferMoneyRywa.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/SvgUndrawTransferMoneyRywa.tsx -------------------------------------------------------------------------------- /src/components/TransactionAmount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionAmount.tsx -------------------------------------------------------------------------------- /src/components/TransactionContactsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionContactsList.tsx -------------------------------------------------------------------------------- /src/components/TransactionCreateStepOne.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionCreateStepOne.tsx -------------------------------------------------------------------------------- /src/components/TransactionCreateStepThree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionCreateStepThree.tsx -------------------------------------------------------------------------------- /src/components/TransactionCreateStepTwo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionCreateStepTwo.tsx -------------------------------------------------------------------------------- /src/components/TransactionDateRangeFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionDateRangeFilter.tsx -------------------------------------------------------------------------------- /src/components/TransactionDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionDetail.tsx -------------------------------------------------------------------------------- /src/components/TransactionInfiniteList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionInfiniteList.tsx -------------------------------------------------------------------------------- /src/components/TransactionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionItem.tsx -------------------------------------------------------------------------------- /src/components/TransactionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionList.tsx -------------------------------------------------------------------------------- /src/components/TransactionListAmountRangeFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionListAmountRangeFilter.tsx -------------------------------------------------------------------------------- /src/components/TransactionListFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionListFilters.tsx -------------------------------------------------------------------------------- /src/components/TransactionNavTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionNavTabs.tsx -------------------------------------------------------------------------------- /src/components/TransactionPersonalList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionPersonalList.tsx -------------------------------------------------------------------------------- /src/components/TransactionPublicList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionPublicList.tsx -------------------------------------------------------------------------------- /src/components/TransactionTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/TransactionTitle.tsx -------------------------------------------------------------------------------- /src/components/UserListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/UserListItem.tsx -------------------------------------------------------------------------------- /src/components/UserListSearchForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/UserListSearchForm.tsx -------------------------------------------------------------------------------- /src/components/UserSettingsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/UserSettingsForm.tsx -------------------------------------------------------------------------------- /src/components/UsersList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/components/UsersList.tsx -------------------------------------------------------------------------------- /src/containers/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/containers/App.tsx -------------------------------------------------------------------------------- /src/containers/AppAuth0.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/containers/AppAuth0.tsx -------------------------------------------------------------------------------- /src/containers/AppCognito.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/containers/AppCognito.tsx -------------------------------------------------------------------------------- /src/containers/AppGoogle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/containers/AppGoogle.tsx -------------------------------------------------------------------------------- /src/containers/AppOkta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/containers/AppOkta.tsx -------------------------------------------------------------------------------- /src/containers/BankAccountsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/containers/BankAccountsContainer.tsx -------------------------------------------------------------------------------- /src/containers/NotificationsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/containers/NotificationsContainer.tsx -------------------------------------------------------------------------------- /src/containers/PrivateRoutesContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/containers/PrivateRoutesContainer.tsx -------------------------------------------------------------------------------- /src/containers/TransactionCreateContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/containers/TransactionCreateContainer.tsx -------------------------------------------------------------------------------- /src/containers/TransactionDetailContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/containers/TransactionDetailContainer.tsx -------------------------------------------------------------------------------- /src/containers/TransactionsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/containers/TransactionsContainer.tsx -------------------------------------------------------------------------------- /src/containers/UserOnboardingContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/containers/UserOnboardingContainer.tsx -------------------------------------------------------------------------------- /src/containers/UserSettingsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/containers/UserSettingsContainer.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/machines/authMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/authMachine.ts -------------------------------------------------------------------------------- /src/machines/bankAccountsMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/bankAccountsMachine.ts -------------------------------------------------------------------------------- /src/machines/contactsTransactionsMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/contactsTransactionsMachine.ts -------------------------------------------------------------------------------- /src/machines/createTransactionMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/createTransactionMachine.ts -------------------------------------------------------------------------------- /src/machines/dataMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/dataMachine.ts -------------------------------------------------------------------------------- /src/machines/drawerMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/drawerMachine.ts -------------------------------------------------------------------------------- /src/machines/notificationsMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/notificationsMachine.ts -------------------------------------------------------------------------------- /src/machines/personalTransactionsMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/personalTransactionsMachine.ts -------------------------------------------------------------------------------- /src/machines/publicTransactionsMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/publicTransactionsMachine.ts -------------------------------------------------------------------------------- /src/machines/snackbarMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/snackbarMachine.ts -------------------------------------------------------------------------------- /src/machines/transactionDetailMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/transactionDetailMachine.ts -------------------------------------------------------------------------------- /src/machines/transactionFiltersMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/transactionFiltersMachine.ts -------------------------------------------------------------------------------- /src/machines/userOnboardingMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/userOnboardingMachine.ts -------------------------------------------------------------------------------- /src/machines/usersMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/machines/usersMachine.ts -------------------------------------------------------------------------------- /src/models/bankaccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/models/bankaccount.ts -------------------------------------------------------------------------------- /src/models/banktransfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/models/banktransfer.ts -------------------------------------------------------------------------------- /src/models/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/models/comment.ts -------------------------------------------------------------------------------- /src/models/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/models/contact.ts -------------------------------------------------------------------------------- /src/models/db-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/models/db-schema.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/models/like.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/models/like.ts -------------------------------------------------------------------------------- /src/models/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/models/notification.ts -------------------------------------------------------------------------------- /src/models/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/models/transaction.ts -------------------------------------------------------------------------------- /src/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/models/user.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/setupProxy.js -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/svgs/built-by-cypress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/svgs/built-by-cypress.svg -------------------------------------------------------------------------------- /src/svgs/cypress-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/svgs/cypress-logo.svg -------------------------------------------------------------------------------- /src/svgs/rwa-icon-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/svgs/rwa-icon-logo.svg -------------------------------------------------------------------------------- /src/svgs/rwa-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/svgs/rwa-logo.svg -------------------------------------------------------------------------------- /src/svgs/undraw_navigator_a479.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/svgs/undraw_navigator_a479.svg -------------------------------------------------------------------------------- /src/svgs/undraw_personal_finance_tqcd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/svgs/undraw_personal_finance_tqcd.svg -------------------------------------------------------------------------------- /src/svgs/undraw_personal_settings_kihd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/svgs/undraw_personal_settings_kihd.svg -------------------------------------------------------------------------------- /src/svgs/undraw_reminders_697p.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/svgs/undraw_reminders_697p.svg -------------------------------------------------------------------------------- /src/svgs/undraw_transfer_money_rywa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/svgs/undraw_transfer_money_rywa.svg -------------------------------------------------------------------------------- /src/utils/asyncUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/utils/asyncUtils.ts -------------------------------------------------------------------------------- /src/utils/historyUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/utils/historyUtils.ts -------------------------------------------------------------------------------- /src/utils/portUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/utils/portUtils.ts -------------------------------------------------------------------------------- /src/utils/transactionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/src/utils/transactionUtils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.tsnode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/tsconfig.tsnode.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitchelSt/react-testing-starter/HEAD/yarn.lock --------------------------------------------------------------------------------