blob: 146203b5ea051546d2b6df6b0ac78f6b5ce6de0b [file] [log] [blame]
describe('jasmine-node-uber-nested', function(){
it('should pass', function(){
expect(1+2).toEqual(3);
});
describe('failure', function(){
it('should report failure (THIS IS EXPECTED)', function(){
expect(true).toBeFalsy();
});
});
});