Files
shockbot/fixtures/basic.ts
T
2025-09-23 12:48:35 -04:00

14 lines
389 B
TypeScript

import type { MainParams } from "../main.ts";
const testParams = {
inputs: {
prompt:
"List all files in the current directory, then create a file called dynamic-test.txt with the content 'This was loaded from a TypeScript file!', then delete it.",
anthropic_api_key: "sk-test-key",
},
env: {},
cwd: process.cwd(),
} satisfies MainParams;
export default testParams;