https://github.com/terrymun/nextjs-link-behavior-demo
Demonstration of using new experimental Link behavior on Next.js
https://github.com/terrymun/nextjs-link-behavior-demo
Last synced: 20 days ago
JSON representation
Demonstration of using new experimental Link behavior on Next.js
- Host: GitHub
- URL: https://github.com/terrymun/nextjs-link-behavior-demo
- Owner: terrymun
- Created: 2022-09-12T07:05:58.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-12T07:06:41.000Z (almost 4 years ago)
- Last Synced: 2025-02-12T09:09:38.542Z (over 1 year ago)
- Language: CSS
- Size: 66.4 KB
- Stars: 0
- Watchers: 2
- 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.
## 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
```
## Run Jest Tests
```bash
npm test
```