const hello = () => 'world';
function hello() {return "world";}- const hello = () => 'world';
describe("Solution", function(){ it("should return world as a string", function(){ Test.assertEquals(hello(), "world"); }); });
- describe("Solution", function(){
it("should test for something", function(){- it("should return world as a string", function(){
- Test.assertEquals(hello(), "world");
- });
- });