You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+32-5Lines changed: 32 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,6 @@
1
-
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
1
+
# OpenTelemetry Changelog
2
+
3
+
This is the source repository for [changelog.opentelemetry.io](https://changelog.opentelemetry.io), a website that tracks changes across OpenTelemetry repositories.
2
4
3
5
## Getting Started
4
6
@@ -27,10 +29,35 @@ To learn more about Next.js, take a look at the following resources:
27
29
-[Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
28
30
-[Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
29
31
30
-
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
32
+
## Testing
33
+
34
+
This project uses Playwright for end-to-end and visual regression testing.
35
+
36
+
To run tests:
37
+
38
+
```bash
39
+
# Install Playwright browsers and dependencies
40
+
npx playwright install --with-deps
41
+
42
+
# Run all tests
43
+
npm test
44
+
45
+
# Run tests with UI
46
+
npm run test:ui
47
+
48
+
# Run tests in debug mode
49
+
npm run test:debug
50
+
51
+
# Run only visual regression tests
52
+
npm run test:visual
53
+
```
54
+
55
+
Tests are located in the `tests` directory and are organized by feature. Visual regression tests automatically capture screenshots for comparison against baselines.
56
+
57
+
## Contributing
31
58
32
-
## Deploy on Vercel
59
+
Please see [CONTRIBUTING.md](./CONTRIBUTING.md) for details on how to contribute to this project.
33
60
34
-
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
61
+
## License
35
62
36
-
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
63
+
Apache-2.0 - See [LICENSE](./LICENSE) for more information.
0 commit comments