describe(“The answer to life the universe and everything”, function(){

it("is 42", function(){
  var answer = 42;
  expect(answer).to.eql(42);
});

});