diff --git a/packages/components/dist/org.standardnotes.advanced-checklist/package.json b/packages/components/dist/org.standardnotes.advanced-checklist/package.json index 7d1ae8090..281f27b22 100644 --- a/packages/components/dist/org.standardnotes.advanced-checklist/package.json +++ b/packages/components/dist/org.standardnotes.advanced-checklist/package.json @@ -22,7 +22,7 @@ "deploy-build": "yarn run predeploy && gh-pages -b build -d build", "deploy-dev": "yarn run predeploy && gh-pages -b dev -d build", "deploy-stable": "yarn run predeploy && gh-pages -b gh-pages -d build", - "test": "react-scripts test", + "test": "react-scripts test --watchAll=false", "test:coverage": "npm run test -- --coverage --watchAll", "eject": "react-scripts eject", "serve": "serve -s -p 3000 build", diff --git a/packages/components/dist/org.standardnotes.markdown-visual-editor/package.json b/packages/components/dist/org.standardnotes.markdown-visual-editor/package.json index ceb7076cb..7a21d36f7 100644 --- a/packages/components/dist/org.standardnotes.markdown-visual-editor/package.json +++ b/packages/components/dist/org.standardnotes.markdown-visual-editor/package.json @@ -16,7 +16,6 @@ "analyze": "source-map-explorer 'build/static/js/*.js'", "start": "react-scripts start", "build": "react-scripts build", - "test": "react-scripts test", "eject": "react-scripts eject", "lint": "prettier --write 'src/**/*.{html,css,scss,js,jsx,ts,tsx,json}' README.md" }, diff --git a/packages/components/package.json b/packages/components/package.json index fda105c00..b7f7753dc 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -9,6 +9,7 @@ }, "scripts": { "build": "echo BUILDING COMPONENTS && yarn workspaces foreach --parallel run build", + "test": "yarn workspaces foreach --parallel run test", "lint": "yarn workspaces foreach --parallel run lint", "version": "node scripts/package-components.mjs && git add dist && git commit -m 'chore(release): components'" }, diff --git a/packages/components/src/org.standardnotes.advanced-checklist/package.json b/packages/components/src/org.standardnotes.advanced-checklist/package.json index 7d1ae8090..dd9fb7ff5 100644 --- a/packages/components/src/org.standardnotes.advanced-checklist/package.json +++ b/packages/components/src/org.standardnotes.advanced-checklist/package.json @@ -22,7 +22,7 @@ "deploy-build": "yarn run predeploy && gh-pages -b build -d build", "deploy-dev": "yarn run predeploy && gh-pages -b dev -d build", "deploy-stable": "yarn run predeploy && gh-pages -b gh-pages -d build", - "test": "react-scripts test", + "custom:test": "react-scripts test --watchAll=false", "test:coverage": "npm run test -- --coverage --watchAll", "eject": "react-scripts eject", "serve": "serve -s -p 3000 build", diff --git a/packages/components/src/org.standardnotes.markdown-visual-editor/package.json b/packages/components/src/org.standardnotes.markdown-visual-editor/package.json index ceb7076cb..7a21d36f7 100644 --- a/packages/components/src/org.standardnotes.markdown-visual-editor/package.json +++ b/packages/components/src/org.standardnotes.markdown-visual-editor/package.json @@ -16,7 +16,6 @@ "analyze": "source-map-explorer 'build/static/js/*.js'", "start": "react-scripts start", "build": "react-scripts build", - "test": "react-scripts test", "eject": "react-scripts eject", "lint": "prettier --write 'src/**/*.{html,css,scss,js,jsx,ts,tsx,json}' README.md" },