Re-arranged files so that lib represents a standalone drop-in of Jasmine. Killed JSON reporter because it has been succeeded by TrivialReporter.js. Using mock-timeout in src for mock-timeout functionality (instead of maintaining two copies

This commit is contained in:
ragaskar
2009-06-24 07:44:40 -07:00
parent c420c78517
commit 275b83cc52
8 changed files with 5 additions and 294 deletions

11
lib/example_suite.js Normal file
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);
});
});
});