From 7530f3b58a88097935e0e64d6e758519bf0db255 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henry=20=C3=81vila?= Date: Tue, 17 Mar 2026 14:42:03 -0300 Subject: [PATCH] fix: add test:custom-content to test and quality scripts Co-Authored-By: Claude Opus 4.6 (1M context) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a1d3c5caf..65e6d525c 100644 --- a/package.json +++ b/package.json @@ -39,9 +39,9 @@ "lint:fix": "eslint . --ext .js,.cjs,.mjs,.yaml --fix", "lint:md": "markdownlint-cli2 \"**/*.md\"", "prepare": "command -v husky >/dev/null 2>&1 && husky || exit 0", - "quality": "npm run format:check && npm run lint && npm run lint:md && npm run docs:build && npm run validate:schemas && npm run test:schemas && npm run test:install && npm run validate:refs", + "quality": "npm run format:check && npm run lint && npm run lint:md && npm run docs:build && npm run validate:schemas && npm run test:schemas && npm run test:install && npm run test:custom-content && npm run validate:refs", "rebundle": "node tools/cli/bundlers/bundle-web.js rebundle", - "test": "npm run test:schemas && npm run test:refs && npm run test:install && npm run validate:schemas && npm run lint && npm run lint:md && npm run format:check", + "test": "npm run test:schemas && npm run test:refs && npm run test:install && npm run test:custom-content && npm run validate:schemas && npm run lint && npm run lint:md && npm run format:check", "test:coverage": "c8 --reporter=text --reporter=html npm run test:schemas", "test:custom-content": "node test/test-custom-content-parent-dir.js", "test:install": "node test/test-installation-components.js",