Documentation and example fixes

This commit is contained in:
bigfix
2010-04-20 07:26:04 -07:00
committed by ragaskar
parent 9f8d18b6b7
commit 5cfb019b6b
10 changed files with 205 additions and 361 deletions

View File

@@ -0,0 +1,11 @@
describe('ExampleSuite', function () {
it('should have a passing test', function() {
expect(true).toEqual(true);
});
describe('Nested Describe', function () {
it('should also have a passing test', function () {
expect(true).toEqual(true);
});
});
});