From 22b6cb81938b60ccaa4a3cbc6e5332cebb916357 Mon Sep 17 00:00:00 2001 From: Ashish Kumar <143941235+ashish0kumar@users.noreply.github.com> Date: Tue, 10 Jun 2025 19:01:42 +0530 Subject: [PATCH] add missing commas --- docs/site/content/docs/guides/tools/jest.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/site/content/docs/guides/tools/jest.mdx b/docs/site/content/docs/guides/tools/jest.mdx index 5ad6be7c820c2..44877f8375a3b 100644 --- a/docs/site/content/docs/guides/tools/jest.mdx +++ b/docs/site/content/docs/guides/tools/jest.mdx @@ -73,7 +73,7 @@ Both the `apps/web` and `packages/ui` have their own test suites, so we'll add a ```json title="./apps/web/package.json" { - "name": "web" + "name": "web", "scripts": { "test": "jest" }, @@ -86,7 +86,7 @@ Both the `apps/web` and `packages/ui` have their own test suites, so we'll add a ```json title="./packages/ui/package.json" { - "name": "@repo/ui" + "name": "@repo/ui", "scripts": { "test": "jest" }, @@ -122,11 +122,11 @@ Because of this difference, we recommend specifying **two separate Turborepo tas ```json title="./apps/web/package.json" { - "name": "web" + "name": "web", "scripts": { "test": "jest", "test:watch": "jest --watch" // [!code highlight] - } + }, "devDependencies": { "jest": "latest" } @@ -136,7 +136,7 @@ Because of this difference, we recommend specifying **two separate Turborepo tas ```json title="./packages/ui/package.json" { - "name": "@repo/ui" + "name": "@repo/ui", "scripts": { "test": "jest", "test:watch": "jest --watch" // [!code highlight]