2009-06-21 03:01:03 +00:00
|
|
|
describe('ExampleSuite', function () {
|
|
|
|
it('should have a passing test', function() {
|
2009-05-29 03:02:15 +00:00
|
|
|
expect(true).toEqual(true);
|
2009-06-21 03:01:03 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('Nested Describe', function () {
|
|
|
|
it('should also have a passing test', function () {
|
|
|
|
expect(true).toEqual(true);
|
|
|
|
});
|
2009-03-01 13:34:00 +00:00
|
|
|
});
|
|
|
|
});
|