blob: 7773ada5f967d3ab25532b5faa395bdfc201795a [file] [log] [blame]
const { main } = require('.');
test('results have a greeting and details property', () => {
const result = main({
name: 'name',
place: 'place',
children: 'children',
height: 'height',
});
expect(result).toHaveProperty('greeting');
expect(result).toHaveProperty('details');
});