mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-17 16:38:18 +00:00
15 lines
324 B
JavaScript
15 lines
324 B
JavaScript
import {test} from 'supertape';
|
|
import {convert} from './input.js';
|
|
|
|
test('cloudcmd: client: config: input: convert', (t) => {
|
|
const result = convert({
|
|
name: 'hello <world>',
|
|
});
|
|
|
|
const expected = {
|
|
name: 'hello <world>',
|
|
};
|
|
|
|
t.deepEqual(result, expected);
|
|
t.end();
|
|
});
|