MCPcopy Index your code
hub / github.com/CodebuffAI/codebuff / cleanupTestFiles

Function cleanupTestFiles

sdk/test/ripgrep-bundling/test-ripgrep.js:66–76  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

64
65// Clean up test files
66async function cleanupTestFiles() {
67 try {
68 const { rmSync } = await import('fs')
69 if (existsSync(testDir)) {
70 rmSync(testDir, { recursive: true, force: true })
71 }
72 console.log('✅ Test files cleaned up')
73 } catch (error) {
74 console.warn('⚠️ Could not clean up test files:', error.message)
75 }
76}
77
78try {
79 setupTestFiles()

Callers 1

test-ripgrep.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected