import {test} from 'supertape'; import {convert} from './input.js'; test('cloudcmd: client: config: input: convert', (t) => { const result = convert({ name: 'hello ', }); const expected = { name: 'hello <world>', }; t.deepEqual(result, expected); t.end(); });