2009-12-28 22:27:02 +00:00
|
|
|
describe('Example', function () {
|
2009-10-31 06:06:00 +00:00
|
|
|
it('should have a passing test', function() {
|
|
|
|
expect(true).toEqual(true);
|
|
|
|
});
|
|
|
|
|
2009-12-28 22:27:02 +00:00
|
|
|
describe('nested describe', function () {
|
2009-10-31 06:06:00 +00:00
|
|
|
it('should also have a passing test', function () {
|
|
|
|
expect(true).toEqual(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|