rsnext/examples/with-jest
Hunter Tunnicliff 877f982924
Use recommended pattern in testing example (#28404)
* Use recommended pattern in testing example

Since the official linter for testing library, `eslint-plugin-testing-library` recommends using `screen` to write queries, this MR updates the testing library example to follow the pattern recommended by the linter.

> DOM Testing Library (and other Testing Library frameworks built on top of it) exports a screen object which has every query (and a debug method). This works better with autocomplete and makes each test a little simpler to write and maintain.

> This rule aims to force writing tests using built-in queries directly from screen object rather than destructuring them from render result. Given the screen component does not expose utility methods such as rerender() or the container property, it is correct to use the render returned value in those scenarios.

See the `prefer-screen-queries` rules docs for more info: https://github.com/testing-library/eslint-plugin-testing-library/blob/main/docs/rules/prefer-screen-queries.md

* Update devDependencies

* Install and configure test linting

* Use recommended pattern in test

* Update test names for consistency

* Update docs

* Set jest environment in each file

* Use root true in `with-jest` eslint config

* Ensure nested .eslintrcs are not loaded for repo lint

Co-authored-by: jj@jjsweb.site <jj@jjsweb.site>
2021-08-25 12:33:57 -05:00
..
__mocks__ Update with-jest example (#27894) 2021-08-09 19:04:27 +00:00
__tests__ Use recommended pattern in testing example (#28404) 2021-08-25 12:33:57 -05:00
pages Fix deploy buttons URLs (#20834) 2021-01-07 01:40:29 +00:00
public New Jest Example (#10396) 2020-02-03 20:36:55 +01:00
styles New Jest Example (#10396) 2020-02-03 20:36:55 +01:00
.eslintrc.json Use recommended pattern in testing example (#28404) 2021-08-25 12:33:57 -05:00
.gitignore Added .gitignore to examples that are deployed to vercel (#15127) 2020-07-16 10:52:23 -04:00
jest.config.js Update with-jest example (#27894) 2021-08-09 19:04:27 +00:00
jest.setup.js Update with-jest example (#27894) 2021-08-09 19:04:27 +00:00
jsconfig.json Update with-jest example (#27894) 2021-08-09 19:04:27 +00:00
package.json Use recommended pattern in testing example (#28404) 2021-08-25 12:33:57 -05:00
README.md Unify installation scripts for example apps (#19808) 2021-01-24 17:05:49 +01:00

Next.js + Jest

This example shows how to configure Jest to work with Next.js.

This includes Next.js' built-in support for Global CSS, CSS Modules, and TypeScript!

How to Use

Quickly get started using Create Next App!

In your terminal, run the following command:

npx create-next-app --example with-jest with-jest-app
# or
yarn create next-app --example with-jest with-jest-app

Run Jest Tests

npm test