From c50d318152b003f65451fc2d830cd26d4168ee75 Mon Sep 17 00:00:00 2001 From: Jason Rasmussen Date: Mon, 19 Feb 2024 08:54:41 -0500 Subject: [PATCH] chore: cleanup old jest references (#7198) --- cli/.eslintrc.cjs | 1 - cli/testSetup.js | 3 --- docs/docs/developer/pr-checklist.md | 4 ++-- 3 files changed, 2 insertions(+), 6 deletions(-) delete mode 100644 cli/testSetup.js diff --git a/cli/.eslintrc.cjs b/cli/.eslintrc.cjs index ca36d31bf7..0906129bc1 100644 --- a/cli/.eslintrc.cjs +++ b/cli/.eslintrc.cjs @@ -10,7 +10,6 @@ module.exports = { root: true, env: { node: true, - jest: true, }, ignorePatterns: ['.eslintrc.js'], rules: { diff --git a/cli/testSetup.js b/cli/testSetup.js deleted file mode 100644 index 23a5890d18..0000000000 --- a/cli/testSetup.js +++ /dev/null @@ -1,3 +0,0 @@ -// add all jest-extended matchers -import * as matchers from 'jest-extended'; -expect.extend(matchers); diff --git a/docs/docs/developer/pr-checklist.md b/docs/docs/developer/pr-checklist.md index 59aaa4fc75..32d9b03507 100644 --- a/docs/docs/developer/pr-checklist.md +++ b/docs/docs/developer/pr-checklist.md @@ -7,7 +7,7 @@ When contributing code through a pull request, please check the following: - [ ] `npm run lint` (linting via ESLint) - [ ] `npm run format` (formatting via Prettier) - [ ] `npm run check:svelte` (Type checking via SvelteKit) -- [ ] `npm test` (Tests via Jest) +- [ ] `npm test` (unit tests) :::tip Run all web checks with `npm run check:all` @@ -18,7 +18,7 @@ Run all web checks with `npm run check:all` - [ ] `npm run lint` (linting via ESLint) - [ ] `npm run format` (formatting via Prettier) - [ ] `npm run check` (Type checking via `tsc`) -- [ ] `npm test` (Tests via Jest) +- [ ] `npm test` (unit tests) :::tip Run all server checks with `npm run check:all`