From 2dc3d4bb267671804bbdf64004592d4a543285a9 Mon Sep 17 00:00:00 2001 From: kaitranntt Date: Wed, 5 Nov 2025 10:40:24 -0500 Subject: [PATCH] fix: move npm-specific integration tests to npm/ directory - Move integration/special-commands.test.js to npm/ since it tests bin/ccs.js - This test was incorrectly categorized as cross-installation integration - It specifically tests npm package functionality (bin/ccs.js) - Remove empty integration/ directory and update package.json - Final test counts: 37 native + 39 npm + 7 unit = 83 total tests Clean final structure: - native/ - Native installation tests only - npm/ - npm package tests (including integration tests) - shared/ - Shared utilities, fixtures, and unit tests --- tests/{integration => npm}/special-commands.test.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/{integration => npm}/special-commands.test.js (100%) diff --git a/tests/integration/special-commands.test.js b/tests/npm/special-commands.test.js similarity index 100% rename from tests/integration/special-commands.test.js rename to tests/npm/special-commands.test.js