https://github.com/codehunt101/react-plotly-demo
https://github.com/codehunt101/react-plotly-demo
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/codehunt101/react-plotly-demo
- Owner: CodeHunt101
- Created: 2024-12-08T04:59:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-04T22:22:31.000Z (over 1 year ago)
- Last Synced: 2025-01-04T23:21:47.342Z (over 1 year ago)
- Language: TypeScript
- Size: 249 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
[](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
Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app) with [npm](https://docs.npmjs.com/cli/init), [Yarn](https://yarnpkg.com/lang/en/docs/cli/create/), or [pnpm](https://pnpm.io) to bootstrap the example:
```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
```
```bash
yarn test
```
```bash
pnpm test
```
Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)).