fix: update test cases

This commit is contained in:
mingholy.lmh 2026-01-30 10:08:19 +08:00
parent 54bb39f6ab
commit 371b408d6d
2 changed files with 4 additions and 3 deletions

View file

@ -106,11 +106,11 @@ describe('exportCommand', () => {
);
});
it('should have md, html, json, and jsonl subcommands', () => {
it('should have html, md, json, and jsonl subcommands', () => {
expect(exportCommand.subCommands).toHaveLength(4);
expect(exportCommand.subCommands?.map((c) => c.name)).toEqual([
'md',
'html',
'md',
'json',
'jsonl',
]);