Skip to content

Commit f15900d

Browse files
authoredOct 4, 2020
Add tests for some getters (#1369)
1 parent 39eadd7 commit f15900d

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed
 

‎tests/command.alias.test.js

+14
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,17 @@ test('when use second of aliases then action handler called', () => {
7373
program.parse(['dir'], { from: 'user' });
7474
expect(actionMock).toHaveBeenCalled();
7575
});
76+
77+
test('when set alias then can get alias', () => {
78+
const program = new commander.Command();
79+
const alias = 'abcde';
80+
program.alias(alias);
81+
expect(program.alias()).toEqual(alias);
82+
});
83+
84+
test('when set aliases then can get aliases', () => {
85+
const program = new commander.Command();
86+
const aliases = ['a', 'b'];
87+
program.aliases(aliases);
88+
expect(program.aliases()).toEqual(aliases);
89+
});

‎tests/command.description.test.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const commander = require('../');
2+
3+
test('when set description then get description', () => {
4+
const program = new commander.Command();
5+
const description = 'abcdef';
6+
program.description(description);
7+
expect(program.description()).toMatch(description);
8+
});

‎tests/options.version.test.js

+7
Original file line numberDiff line numberDiff line change
@@ -165,4 +165,11 @@ describe('.version', () => {
165165
program.parse(['node', 'test', '--version']);
166166
}).toThrow(myVersion);
167167
});
168+
169+
test('when specify version then can get version', () => {
170+
const myVersion = '1.2.3';
171+
const program = new commander.Command();
172+
program.version(myVersion);
173+
expect(program.version()).toEqual(myVersion);
174+
});
168175
});

0 commit comments

Comments
 (0)
Please sign in to comment.