File tree Expand file tree Collapse file tree
packages/claude-code-plugin/scripts Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 * by MCP server (single source of truth).
1010 */
1111
12+ import * as path from 'path' ;
13+ import * as fs from 'fs' ;
1214import { describe , it , expect , beforeAll } from 'vitest' ;
1315
1416// Import utilities that are testable in isolation
@@ -188,10 +190,6 @@ describe('build script orchestration', () => {
188190// Packaging Integration — namespaced command assets
189191// ============================================================================
190192describe ( 'packaging integration' , ( ) => {
191- // Use a fresh import of path/fs to keep these tests self-contained
192- const path = require ( 'path' ) ;
193- const fs = require ( 'fs' ) ;
194-
195193 const pluginRoot = path . resolve ( __dirname , '..' ) ;
196194 const commandsDir = path . join ( pluginRoot , 'commands' ) ;
197195
You can’t perform that action at this time.
0 commit comments