describe('utilities', () => {
describe('greet', () => {
it('should greet a given name', () => {
expect('HELLO JOHN').toEqual('HELLO JOHN');
});
// it('should greet the world if a name is not given', () => {// expect(getGreeting()).toEqual('HELLO WORLD')// })
});
});