Made some progress here, I'm now getting the rake task to run, cycling
through the tests, but they all fail. Debugging shows the following
results for jasmine tests:
describe("Ci implementation",function(){
it("should return true", function(){
expect(1===1).toBeTruthy(); //fails
});
it("should return false",function(){
expect(1===1).toBeFalsy(); //passes
});
it("should return false",function(){
expect(1===2).toBeFalsy(); //passes
});
});
I tried different matchers and they all have similiar behaviour, i.e.
expect(1).toBeDefined(); fails, yet toBeNull passes.