Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mysterycommand/with-jest-app
https://github.com/mysterycommand/with-jest-app
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mysterycommand/with-jest-app
- Owner: mysterycommand
- Created: 2024-06-10T19:31:44.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-10T19:34:12.000Z (7 months ago)
- Last Synced: 2024-06-10T22:34:41.397Z (7 months ago)
- Language: TypeScript
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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. This example also shows how to use Jest with the App Router and React Server Components.
> **Note:** Since tests can be co-located alongside other files inside the App Router, we have placed those tests in `app/` to demonstrate this behavior (which is different than `pages/`). You can still place all tests in `__tests__` if you prefer.
## Deploy your own
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/vercel/next.js/tree/canary/examples/with-jest&project-name=with-jest&repository-name=with-jest)
## How to Use
Quickly get started using [Create Next App](https://github.com/vercel/next.js/tree/canary/packages/create-next-app#readme)!
In your terminal, run the following command:
```bash
npx create-next-app --example with-jest with-jest-app
``````bash
yarn create next-app --example with-jest with-jest-app
``````bash
pnpm create next-app --example with-jest with-jest-app
```## Running Tests
```bash
npm test
```