elisha4648 years ago
hello world
function hello() {
return "world";
}
describe("Solution", function(){
it("should test for something", function(){
Test.assertEquals(hello(), "world");
});
});
function hello() {
return "world";
}
describe("Solution", function(){
it("should test for something", function(){
Test.assertEquals(hello(), "world");
});
});
Loading collection data...