Skip to content

Commit 1543301

Browse files
authored
chore(repo): Improve integration tests docs (#2275)
* chore(repo): Improve integration tests docs * add QUnit
1 parent b9dd8fb commit 1543301

File tree

3 files changed

+430
-145
lines changed

3 files changed

+430
-145
lines changed

docs/CICD.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# CICD
1+
# Continuous Integration / Continuous Delivery (CI/CD)
22

3-
## TLDR (day-to-day dev flow)
3+
## Day-to-day workflow
44

55
Every time a PR is merged into `main`, an automated canary release will happen. Once the packages are pushed to `npm`, the following actions will take place:
66

@@ -15,7 +15,7 @@ Actions that will be triggered:
1515

1616
- `clerk/cloudflare-workers`: The latest clerk-js versions in `clerkjs-proxy/wrangler.toml` will be updated a PR will open. Follow the instructions in the PR to manually release a new `clerkjs-proxy` worker.
1717

18-
For more details, refer to [PUBLISH.md](https://github.com/clerk/javascript/blob/main/docs/PUBLISH.md).
18+
For more details, refer to the [Publishing docs](https://github.com/clerk/javascript/blob/main/docs/PUBLISH.md).
1919

2020
## Automated canary releases
2121

@@ -26,19 +26,19 @@ Actions that will be triggered:
2626
- `clerk/cloudflare-workers`: The latest clerk-js versions in `clerkjs-proxy/wrangler.toml` will be updated and directly committed to `main`. A second workflow will perform a canary release of the `clerkjs-proxy` worker.
2727
- `clerk/accounts`: A new Accounts deployment will take place, using the most recent canary `@clerk/nextjs` version. This change will not be committed to `main`.
2828

29-
For more details about canary releases, refer to [PUBLISH.md](https://github.com/clerk/javascript/blob/main/docs/PUBLISH.md).
29+
For more details about canary releases, refer to the [Publishing docs](https://github.com/clerk/javascript/blob/main/docs/PUBLISH.md).
3030

3131
## Quality checks
3232

3333
Every time a PR opens or a PR is merged into `main`, the workflows defined in `.github/workflows` will run, ensuring:
3434

3535
- all packages build correctly
3636
- all unit and integration tests are passing
37-
- no type issues exist using `TSC`
37+
- no type issues exist using `tsc`
3838
- no lint issues exist
3939
- formatting is consistent
4040

41-
## Misc
41+
## Miscellaneous
4242

4343
- The `labeler` workflow automatically adds tags to all PRs according to the packages they affect
44-
- The `lock-threads` workflow runs on a schedule and automatically locks stale PRs and issues.
44+
- The `lock-threads` workflow runs on a schedule and automatically locks stale PRs and issues

docs/CONTRIBUTING.md

+33-15
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ When contributing to this repository, please first discuss the change you wish t
44
Please note we have a [code of conduct](https://github.com/clerk/javascript/blob/main/docs/CODE_OF_CONDUCT.md), please follow it in all your interactions with the project.
55

66
<details open="open">
7-
<summary><strong>TABLE OF CONTENTS</strong></summary>
7+
<summary><strong>Table of contents</strong></summary>
88

99
- [Contributing guide](#contributing-guide)
1010
- [Developing locally](#developing-locally)
1111
- [Monorepo setup](#monorepo-setup)
1212
- [Prerequisites](#prerequisites)
1313
- [Setting up your local environment](#setting-up-your-local-environment)
1414
- [Documenting your changes](#documenting-your-changes)
15+
- [Writing tests](#writing-tests)
1516
- [Opening a Pull Request](#opening-a-pull-request)
1617
- [Changesets](#changesets)
1718
- [Commit messages](#commit-messages)
@@ -35,6 +36,9 @@ The current monorepo setup is based on:
3536
- [Changesets](https://github.com/changesets/changesets), used for package versioning, publishing and changelog generation.
3637
- [GitHub Actions](https://docs.github.com/en/actions), used for quality checks and automated release orchestration.
3738
- [Yalc](https://github.com/wclr/yalc), used for to publish packages locally and test them in other local projects.
39+
- [Jest](https://jestjs.io/), used for running unit tests.
40+
- [QUnit](https://qunitjs.com/), used for tests inside `@clerk/backend`.
41+
- [Playwright](https://playwright.dev/), used for running the [integration](../integration/) test suite.
3842

3943
All packages of the monorepo are inside [packages](../packages). For package specific details on installation, architecture and usage, you can refer to the package's README file.
4044

@@ -48,7 +52,7 @@ Additionally there are packages which act as shared utilities or building blocks
4852

4953
### Prerequisites
5054

51-
Have a node version installed that is equal or higher than the one defined in `.nvmrc`
55+
Ensure that you have Node.js installed ([How to install Node.js](https://nodejs.org/en/learn/getting-started/how-to-install-nodejs)). Its version should be equal or higher than the one defined in `.nvmrc` in the root of the repository.
5256

5357
### Setting up your local environment
5458

@@ -60,39 +64,53 @@ To set up your development environment, please follow these steps:
6064
git clone https://github.com/clerk/javascript
6165
```
6266

63-
2. Install the dependencies. We're using npm workspaces, so you **should always run `npm install` from the root of the monorepo**, as it will install dependencies for all the packages:
67+
1. Install the dependencies. We're using npm workspaces, so you **should always run `npm install` from the root of the monorepo**, as it will install dependencies for all the packages:
6468

6569
```sh
6670
cd javascript
6771
npm install
6872
```
6973

70-
3. Build all the packages in the monorepo by running:
74+
1. Build all the packages in the monorepo by running:
7175

7276
```sh
7377
npm run build
7478
```
7579

76-
For package specific setup, refer to the `Build` section of the specific package (eg packages/<package_name>/README.md#build).
80+
This ensures that all internal TypeScript types are generated and any dependencies between packages are resolving.
81+
82+
For package specific setup, refer to the `Build` section of the specific package (e.g. `packages/<package_name>/README.md#build`).
7783

7884
### Documenting your changes
7985

8086
Updating documentation is an important part of the contribution process. If you are changing existing behavior or adding a new feature, make sure [Clerk's documentation](https://github.com/clerk/clerk-docs) is also updated.
8187

8288
To improve the in-editor experience when using Clerk's SDKs, we do our best to add [JSDoc comments](https://jsdoc.app/about-getting-started.html) to our package's public exports. The JSDoc comments should not attempt to duplicate any existing type information, but should provide meaningful additional context or references. If you are adding a new export, make sure it has a JSDoc comment. If you are updating an existing export, make sure any existing comments are updated appropriately.
8389

90+
### Writing tests
91+
92+
When changing functionality or adding completely new code it's highly recommended to add/edit tests to verify the new behavior.
93+
94+
Inside the repository you'll find two types of tests:
95+
96+
1. Unit tests
97+
1. Integration tests
98+
99+
While changing a file inside a package, check if e.g. a `<name>.test.ts` file or a test inside a `__tests__` folder exists. If you add a completely new file, please add a unit test for it.
100+
101+
If your change can't only be tested by unit tests, you should add/edit an integration test. You can find all necessary information about this in the [integration tests README](../integration/README.md).
102+
84103
## Opening a Pull Request
85104

86-
1. Search our repository for open or closed
87-
[Pull Requests](https://github.com/clerk/javascript/pulls)
88-
that relate to your submission. You don't want to duplicate effort.
89-
2. Fork the project
90-
3. Create your feature branch (`git checkout -b feat/amazing_feature`)
91-
4. If required, create a `changeset` that describes your changes (`npm run changeset`). In cases where a changeset is not required, an empty changeset can be created instead (`npm run changeset:empty`) - an empty changeset will not generate a changelog entry for the change, so please use it as an escape hatch or for internal refactors only.
92-
5. Commit your changes (`git commit -m 'feat: Add amazing_feature'`)
93-
6. Push to the branch (`git push origin feat/amazing_feature`)
94-
7. [Open a Pull Request](https://github.com/clerk/javascript/compare?expand=1). Make sure the description includes enough information for the reviewer to understand what the PR is about.
95-
8. Follow the instructions of the pull request template
105+
1. Search our repository for open or closed [Pull Requests](https://github.com/clerk/javascript/pulls) that relate to your submission. You don't want to duplicate effort.
106+
1. Fork the project
107+
1. Create your feature branch (`git checkout -b feat/amazing_feature`)
108+
1. It's highly recommended to [write tests](#writing-tests) to ensure your change works and will continue to work in the future
109+
1. If required, create a `changeset` that describes your changes (`npm run changeset`). In cases where a changeset is not required, an empty changeset can be created instead (`npm run changeset:empty`) - an empty changeset will not generate a changelog entry for the change, so please use it as an escape hatch or for internal refactors only.
110+
1. Commit your changes (`git commit -m 'feat: Add amazing_feature'`)
111+
1. Push to the branch (`git push origin feat/amazing_feature`)
112+
1. [Open a Pull Request](https://github.com/clerk/javascript/compare?expand=1). Make sure the description includes enough information for the reviewer to understand what the PR is about.
113+
1. Follow the instructions of the pull request template
96114

97115
### Changesets
98116

0 commit comments

Comments
 (0)