Skip to content

Commit 85420d6

Browse files
committed
chore(repo): drop mailsac from integration tests
1 parent 14acebd commit 85420d6

File tree

5 files changed

+0
-6
lines changed

5 files changed

+0
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,6 @@ jobs:
487487
E2E_CLERK_ENCRYPTION_KEY: ${{ matrix.clerk-encryption-key }}
488488
CLERK_USE_RQ: ${{ matrix.clerk-use-rq }}
489489
INTEGRATION_INSTANCE_KEYS: ${{ secrets.INTEGRATION_INSTANCE_KEYS }}
490-
MAILSAC_API_KEY: ${{ secrets.MAILSAC_API_KEY }}
491490
NODE_EXTRA_CA_CERTS: ${{ github.workspace }}/integration/certs/rootCA.pem
492491

493492
- name: List temp directory contents

.github/workflows/nightly-checks.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ jobs:
7171
E2E_REACT_DOM_VERSION: "19.1.0"
7272
E2E_REACT_VERSION: "19.1.0"
7373
INTEGRATION_INSTANCE_KEYS: ${{ secrets.INTEGRATION_INSTANCE_KEYS }}
74-
MAILSAC_API_KEY: ${{ secrets.MAILSAC_API_KEY }}
7574

7675
# Upload test artifacts if tests failed
7776
- name: Upload Test Artifacts

integration/.env.local.sample

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
MAILSAC_API_KEY=
21
VERCEL_PROJECT_ID=
32
VERCEL_ORG_ID=
43
VERCEL_TOKEN=

integration/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,6 @@ Before writing tests, it's important to understand how Playwright handles test i
578578
> [!NOTE]
579579
> The test suite also uses these environment variables to run some tests:
580580
>
581-
> - `MAILSAC_API_KEY`: Used for [Mailsac](https://mailsac.com/) to retrieve email codes and magic links from temporary email addresses.
582581
> - `VERCEL_PROJECT_ID`: Only required if you plan on running deployment tests locally. This is the Vercel project ID, and it points to an application created via the Vercel dashboard. The easiest way to get access to it is by linking a local app to the Vercel project using the Vercel CLI, and then copying the values from the `.vercel` directory.
583582
> - `VERCEL_ORG_ID`: The organization that owns the Vercel project. See above for more details.
584583
> - `VERCEL_TOKEN`: A personal access token. This corresponds to a real user running the deployment command. Attention: Be extra careful with this token as it can't be scoped to a single Vercel project, meaning that the token has access to every project in the account it belongs to.

integration/testUtils/emailService.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ export const createEmailService = () => {
1212

1313
const fetcher = async (url: string | URL, init?: RequestInit) => {
1414
const headers = new Headers(init?.headers || {});
15-
// eslint-disable-next-line turbo/no-undeclared-env-vars
16-
headers.set('Mailsac-Key', process.env.MAILSAC_API_KEY);
1715
return fetch(url, { ...init, headers });
1816
};
1917

0 commit comments

Comments
 (0)