mycoder
Version:
A command line tool using agent that can do arbitrary tasks, including coding tasks
11 lines • 435 B
JavaScript
export const command = {
command: 'test-profile',
describe: 'Test the profiling feature',
handler: async () => {
console.log('Profile test completed successfully');
// Profiling report will be automatically displayed by the main function
// Force a delay to simulate some processing
await new Promise((resolve) => setTimeout(resolve, 100));
},
};
//# sourceMappingURL=test-profile.js.map