cloudcmd/client/modules/config/input.spec.js
2026-03-23 21:50:02 +00:00

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 &lt;world&gt;',
};
t.deepEqual(result, expected);
t.end();
});