Yeah, this is probably dumb, but this is my first Kumite.
function hello() { return "hello world"; }
- function hello() {
return "world";- return "hello world";
- }
describe("Solution", function(){ it("should test for something", function(){ Test.assertEquals(hello(), "hello world"); }); });
- describe("Solution", function(){
- it("should test for something", function(){
Test.assertEquals(hello(), "world");- Test.assertEquals(hello(), "hello world");
- });
- });