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

16 lines
325 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();
});