formal-0.1.0: lib/jasmine-node/spec/nested/uber-nested/UberNestedSpec.js
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();
});
});
});