function hello(whoever) { return "hello " + whoever; }
function hello() {return "hello world";- function hello(whoever) {
- return "hello " + whoever;
- }
describe("Solution", function(){ it("should test for something", function(){ Test.assertEquals(hello('gotham'), "hello gotham"); }); });
- describe("Solution", function(){
- it("should test for something", function(){
Test.assertEquals(hello(), "hello world");- Test.assertEquals(hello('gotham'), "hello gotham");
- });
- });