tsivinsky / hi-mom

Say hi to your mom BLAZINGLY FAST
https://npmjs.com/package/hi-mom
320 stars 40 forks source link

Can also greet my dad #51

Open GoldenStack opened 1 year ago

GoldenStack commented 1 year ago

Hello. I don't know if this is expected behaviour, but I can also greet my dad:

console.log(hiMom("Dad")); // Hi, Dad!

Thanks.

It appears as though there is a test case to avoid this:

test("should not say hi to dad", () => {
  expect(hiMom()).not.toBe("Hi, dad!");
});

but I can just put "Dad" in hiMom instead.