MCPcopy Create free account
hub / github.com/continuedev/continue / cleanupTestContext

Function cleanupTestContext

extensions/cli/src/test-helpers/cli-helpers.ts:55–63  ·  view source on GitHub ↗
(
  context: CLITestContext,
)

Source from the content-addressed store, hash-verified

53 * Cleans up test context
54 */
55export async function cleanupTestContext(
56 context: CLITestContext,
57): Promise<void> {
58 try {
59 await fs.rm(context.testDir, { recursive: true, force: true });
60 } catch {
61 // Ignore cleanup errors
62 }
63}
64
65/**
66 * Runs the CLI with given options

Calls

no outgoing calls

Tested by

no test coverage detected