From a2682e5586e0069dc4722444ddc8b89a17338562 Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Wed, 7 Jan 2026 10:59:43 +0900 Subject: [PATCH] fix(js/plugins/anthropic): remove duplicate test:live script Remove duplicate npm script entry in package.json that was causing confusion and potential issues with script execution. --- js/plugins/anthropic/package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/js/plugins/anthropic/package.json b/js/plugins/anthropic/package.json index 7bafa4b182..9703b310df 100644 --- a/js/plugins/anthropic/package.json +++ b/js/plugins/anthropic/package.json @@ -64,7 +64,6 @@ "build": "npm-run-all build:clean check compile", "build:watch": "tsup-node --watch", "test": "tsx --test tests/*_test.ts", - "test:live": "tsx --test tests/live_test.ts", "test:file": "tsx --test", "test:live": "tsx --test tests/live_test.ts", "test:coverage": "check-node-version --node '>=22' && tsx --test --experimental-test-coverage --test-coverage-include='src/**/*.ts' ./tests/**/*_test.ts"