1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/packages/utils/commandToString.test.ts
2023-03-19 17:03:04 +00:00

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);
}
});
});