Updated example.html to use TrivialReporter

This commit is contained in:
ragaskar
2009-06-20 20:01:03 -07:00
parent 280c7bcf27
commit c420c78517
2 changed files with 48 additions and 19 deletions

View File

@@ -1,7 +1,11 @@
describe('one suite description', function () {
it('should be a test', function() {
runs(function () {
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);
});
});
});