mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
20 lines
509 B
TypeScript
20 lines
509 B
TypeScript
import commandToString from './commandToString';
|
|
|
|
describe('commandToString', () => {
|
|
|
|
it('should convert a command array to a string', () => {
|
|
const testCases: [string, string[], string][] = [
|
|
['ls', ['-la'], 'ls -la'],
|
|
['docker', ['--profile', 'with spaces'], 'docker --profile "with spaces"'],
|
|
['', [], ''],
|
|
['', [''], ''],
|
|
];
|
|
|
|
for (const [commandName, args, expected] of testCases) {
|
|
const actual = commandToString(commandName, args);
|
|
expect(actual).toBe(expected);
|
|
}
|
|
});
|
|
|
|
});
|