Skip to content

Commit cc2b6dd

Browse files
committed
Update readme and liscense
1 parent e30b4a7 commit cc2b6dd

File tree

2 files changed

+41
-22
lines changed

2 files changed

+41
-22
lines changed

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Code Climate, Inc
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+20-22
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,33 @@
1-
# Vitest
1+
# Qlty Typescript NextJs Coverage Example
22

3-
This example shows how to use [Vitest](https://github.com/vitest-dev/vitest) with Next.js.
3+
[Qlty](https://example.com) is a Code Health Platform with support for code coverage.
44

5-
This includes Next.js' built-in support for Global CSS, CSS Modules and TypeScript. This example also shows how to use Vitest with the App Router and React Server Components.
5+
This repository is an example using Qlty to track code coverage for a Typescript NextJs project. Coverage data is generated during test suite run and then uploaded to Qlty.
66

7-
> **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.
7+
This repository uses [vitest](https://vitest.dev/) for testing and generating coverage report.
88

9-
## Deploy your own
9+
## Requirements
1010

11-
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/vercel/next.js/tree/canary/examples/with-vitest&project-name=with-vitest&repository-name=with-vitest)
11+
- Node 18 or above
12+
- [NextJs](https://nextjs.org/)
13+
- [Vitest](https://vitest.dev/)
14+
- Run tests with `npm test`
15+
- An account on Qlty (free for open source)
16+
- `QLTY_COVERAGE_TOKEN` is set as a GitHub Actions [repository secret](https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository)
1217

13-
## How to use
18+
## Set up
1419

15-
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:
20+
See [`.github/workflows/main.yml`](./.github/workflows/main.yml) in this repository for a basic configuration.
1621

17-
```bash
18-
npx create-next-app --example with-vitest with-vitest-app
19-
```
22+
## Documentation
2023

21-
```bash
22-
yarn create next-app --example with-vitest with-vitest-app
23-
```
24+
- [Advanced code coverage configuration](https://example.com)
25+
- [Alternative supported CI providers](https://example.com)
2426

25-
```bash
26-
pnpm create next-app --example with-vitest with-vitest-app
27-
```
27+
## Help and feedback
2828

29-
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)).
29+
Join the our [Slack Community](https://example.com) for help and to provide feedback that we'll use to improve Qlty.
3030

31-
## Running Tests
31+
## License
3232

33-
```bash
34-
npm test
35-
```
33+
[MIT License](./LICENSE.md)

0 commit comments

Comments
 (0)