Skip to content

Commit

Permalink
use module exports to fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brandenrodgers committed Jan 15, 2025
1 parent 58491cf commit 1d155e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion commands/account/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,12 @@ function builder(yargs: Argv): Argv {
return yargs;
}

export default {
const yargsCommand = {
describe,
command,
handler,
builder,
};

export default yargsCommand;
module.exports = yargsCommand;

0 comments on commit 1d155e9

Please sign in to comment.