(subCommand: string, options: any)
| 12 | }; |
| 13 | |
| 14 | const migrateAction = async (subCommand: string, options: any): Promise<void> => { |
| 15 | await telemetry.trackCommand(`migrate ${subCommand}`, () => actions.migrate(subCommand, options)); |
| 16 | }; |
| 17 | |
| 18 | const dbAction = async (subCommand: string, options: any): Promise<void> => { |
| 19 | await telemetry.trackCommand(`db ${subCommand}`, () => actions.db(subCommand, options)); |
no test coverage detected